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 …
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.
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'
}
})
…
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
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
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
3answers
33 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
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 >
…
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 …
1
vote
2answers
69 views
How do you fadeIn and animate at the same time?
Using jQuery I'm creating a basic 'tooltip' animation so that the tooltip will appear in a little animation in which it fades into view as well as move vertically.
So far I have this:
…
0
votes
1answer
87 views
WPF WriteableBitmap and effects
Im trying to look into using the WPF WriteableBitmap class to allow my application to apply an opacity mask to an image.
Basically I have a blue rectangle as an image, and another 100% transparent …
0
votes
2answers
59 views
jQuery - Scale anchor on mouseover
Can anyone tell me why this one isn't working?
$(".stage a").live("mouseover", function(){
$(this).effect("scale", { percent: 200 }, 200);
});
Animate height & width work - I'm just …
