Questions tagged [effects]

Non functional enhancements of user interaction with a product (most commonly visual and sound)

Do not use this tag for R effects package related posts.

1053 questions
22
votes
4 answers

Set transparency of a DIV and its contents using jQuery

What is the best way to set the transparency of a HTML DIV element and its contents using jQuery?
Keith Adler
  • 20,880
  • 28
  • 119
  • 189
20
votes
2 answers

How can I create a drop shadow, inner glow and outer glow in Java Swing?

I am generating some images using the Graphics2D interface, and occasionally I'd like to be able to draw some text on the image and apply to it effects like the ones in Adobe Photoshop. Right now to generate a 'shadow' on the text I am drawing the…
Tom Neyland
  • 6,860
  • 2
  • 36
  • 52
20
votes
5 answers

Is Starburst effect doable in CSS3?

does anybody know if the following image could be made in CSS? Light and dark lines could and should be equal width and edges fade in to darker color so that overall background would be dark color (dark blue in this case). Any help is well…
micadelli
  • 2,482
  • 6
  • 26
  • 38
17
votes
1 answer

Shine effect automatically with css

I'm trying to do this shine effect operate automatically (without a: hover), every 5 seconds. http://jsfiddle.net/AntonTrollback/nqQc7/ .icon:after { content: ""; position: absolute; top: -110%; left: -210%; width: 200%; height: 200%; …
Anderson
  • 363
  • 2
  • 5
  • 14
17
votes
1 answer

How practical is it to embed the core of a language with an effectful function space (like ML) into Haskell?

As Moggi proposed 20 years ago, the effectful function space -> of languages like ML can be decomposed into the standard total function space => plus a strong monad T to capture effects. A -> B decomposes to A => (T B) Now, Haskell supports…
RD1
  • 3,305
  • 19
  • 28
17
votes
4 answers

How can I execute multiple, simultaneous jquery effects?

I am animating some error/validation elements on a page. I want them to bounce and be highlighted, but at the same time if possible. Here's what I'm currently doing: var els = $(".errorMsg"); els.effect("bounce", {times: 5},…
Samuel Meacham
  • 10,215
  • 7
  • 44
  • 50
16
votes
3 answers

Preferred way to attach AudioEffect to global mix?

In Android, AudioEffect API, all of the builtin effects such as Equalizer come with a warning "NOTE: attaching an Equalizer to the global audio output mix by use of session 0 is deprecated. " If this is deprecated, then what is the replacement API?…
yano
  • 4,095
  • 3
  • 35
  • 68
16
votes
4 answers

How can I add moving effects to my controls in C#?

I have a Panel In my C# form and I have a button. When I click on the Button the invisible Panel Shows. Instead of that I want the Panel to move in or slide in. For example when you click on a combobox the dropdown list doesnt just pop in. I want my…
Pedrum
  • 634
  • 3
  • 7
  • 16
16
votes
2 answers

@ngrx Effect does not run the second time

I've just started learning about @ngrx/store and @ngrx.effects and have created my first effect in my Angular/Ionic app. It runs ok the first time but if I dispatch the event to the store again (i.e when clicking the button again), nothing happens…
Richard Shergold
  • 572
  • 1
  • 8
  • 21
16
votes
3 answers

Add drop shadow effects to EditText Field

I am trying to design an EditText Field having Shadows (bottom and right side) like this tried googling & hunted many SO discussions but all are for TextView not EditText. This is my code adding shadow to Input Text but not to TextField
swiftBoy
  • 35,607
  • 26
  • 136
  • 135
15
votes
2 answers

What is a type and effect system?

The Wikipedia article on Effect system is currently just a short stub and I've been wondering for a while as to what is an effect system. Are there any languages that have an effect system in addition to a type system? What would a possible…
Mark Cidade
  • 98,437
  • 31
  • 224
  • 236
14
votes
2 answers

Does jQuery have a plugin to display a "message bar" like the Twitter "wrong password" bar at the top of screen?

Twitter will pop down a message bar at the top of the screen say "Wrong password" and after 10 seconds, it will slide up and disappear. Chrome also shows "Do you want to save the password" message box using such a way. Does jQuery have a plug in to…
nonopolarity
  • 146,324
  • 131
  • 460
  • 740
13
votes
2 answers

How to use Flipboard effect on Android

I really like some effects in iPad. Especial flipboard, but I am an android developer at the moment, so I want to build an app which has the same effect. But I cannot find any source code about it on the Internet. On youtube I found a video I really…
NemoDo
  • 151
  • 3
  • 11
13
votes
3 answers

How to create a gravity effect with Javascript?

Google gravity and gravity script are two nice demonstrations. but no source code or tutorials are available. and the original JS files are very big. How can I create a Gravity effect with Drag & drop(specially being "Throw able" and "rotatable"…
Towhid
  • 618
  • 2
  • 5
  • 19
13
votes
4 answers

Blur the background of the WPF container

Ultimately, what I want to achieve is a replication to some extend, of an Aero glass functionality of a WPF content control. If I apply the BlurEffect to a StackPanel that contains a TextBlock, I will have the TextBlock's text blurred. Consider an…
Maxim V. Pavlov
  • 10,303
  • 17
  • 74
  • 174
1
2
3
70 71