0
votes
2answers
20 views
How to apply multiple effect on same element
How can i set mulitple effect like(shadow and blur) on same element.
1
vote
2answers
28 views
neon-glow effect in IE8
The following css creates a nice neon-glow effect around text
{
text-shadow: 0em 0em 0.3em white; /* assuming a dark background */
}
However it doesn't work in IE7/8
For a reference, compare …
1
vote
1answer
29 views
How to bind Flex Effects to the effects target properties?
Hi,
I'm trying to reuse effects. To achieve this, i was hoping that i could bind some of the effect's properties to the effect's target. Here's what i wanted to do:
<mx:transitions>
…
0
votes
1answer
45 views
jQuery tabs: Transition happens after mouseover
Hi,
I am using this code:
$(document).ready(function() {
$("#tabs").tabs({
event: 'mouseover',
fx: {
opacity: 'toggle',
duration: 'slow'
}
})
…
0
votes
2answers
74 views
WPF ShaderEffect with PS 3.0 shaders
Where could I find examples of PS 3.0 shaders used as ShaderEffects for WPF 4? I'm looking for tutorials, presentations, any resource on this matter.
0
votes
1answer
57 views
jQuery UI Slide Effect Problems
I'm redesigning my company website and we're going pretty effects-heavy with jQuery, Flash, etc. So far I haven't had much of a problem doing any of this, but two minor issues keep cropping up and …
0
votes
1answer
30 views
Is it possible to use a pixel shader inside a sprite?
Dear all,
Is it possible to use a pixel shader inside a sprite?
I have create a simple pixel shader, that just writes red color, for
testing.
I have surrounded my Sprite.DrawImage(tex,...) call by …
1
vote
3answers
32 views
How do I use the “highlight” jquery effect without temporarily hiding the background-image?
Hello All,
I am trying to use the jquery ui "highlight" effect on an input html element with a background image set in the CSS (A search bar with a magnifying glass). During the "highlight" …
0
votes
1answer
75 views
Flex Glow effect customization
Hi, all.
I use Flex's Glow effects in my custom VBox-based component for highlighting it on roll over. It looks great. But I would like it to have rectangular shape with gradient to alpha 0. How can …
1
vote
4answers
77 views
Fx on Javascript: How to fade stuff, etc without frameworks?
Hi,
I would like to learn how to do fade, and similar effects on Javascript.
I often get answers, like why not use Jquery, mootools, etc ? Well, I
want to learn how stuff works, then I wont mind …
1
vote
1answer
67 views
How to use flex tilelist data effects combined with a ListCollectionView dataprovider
I am using a TileList control with an effect sequence linked to the itemsChangeEffect property.
<mx:TileList
itemsChangeEffect="{dataChangeEffectSequence}"
...>
</mx:TileList >
…
2
votes
5answers
188 views
[jQuery] Show LIs based on ID in sequence
I'm working on creating a for-loop that calls a javascript effect and applies it to an LI, doing it in sequence. Here's what I've got:
$(document).ready(function () {
for(i=1;i<=10;i++) {
…
4
votes
5answers
12k views
Timeout jquery effects
Hey All,
I am trying to have an element fade in, then in 5000ms fade back out again. I know I can do something like:
setTimeout(function(){ $(".notice").fadeOut() }, 5000);
But that will only …
0
votes
4answers
404 views
After JQuery slideUp() finishes the rest of the content jumps into place
I'm trying to do a simple JQuery slideUp of an information message. The problem is that the message slides out cleanly and the animation looks great, but the div below the one I'm sliding out stays …
0
votes
1answer
41 views
Ajax response that slides open a div
Okay, this is following on from my previous question reguarding performing a simple ajax request that, once the request has returned a readyState of 4 and a status of 200 it inserts the response into …
