29
votes
21answers
2k views
Stunning graphic effects with javascript
Seeing the full javascript rotating 3d cube, I was wondering,
What are the most stunning javascript-only effects you've ever seen?
7
votes
2answers
9k views
jQuery slide left and show
I extended the jQuery effects called slideRightShow() and slideLeftHide() with a couple functions that work similarly to slideUp() and slideDown() as seen below. However, I would also like to …
5
votes
3answers
285 views
Volumetric particles
Hey guys,
I'm toying with the idea of volumetric particles. By 'volumetric' I don't mean actually 3D model per particle - usually it's more expensive and harder to blend with other particles. What …
4
votes
5answers
13k 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 …
3
votes
1answer
236 views
Create tab blinking effect (like IM programs) using wxNotebook
How can I Create Tab blinking effect like IM programs do using wxNotebook?
A good example of this is would be any tabbed IM program that blinks to show the user that they received a new IM.
3
votes
7answers
236 views
Most useful animation in web or desktop application
Many animation effects are simply gratuitous eye candy -- however, there are situations where animations effectively communicate to the user what's going on.
What are some of your favorite uses for …
3
votes
6answers
7k views
delay JQuery effects
Hi,
I want to fade out an element and all its child elements after a delay of a few seconds. but I haven't found a way to specify that an effect should start after a specified time delay.
Thanks in …
3
votes
4answers
316 views
What is a type and effect system?
The Wikipedia artcile 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 …
2
votes
1answer
28 views
Can I set global fx properties in MooTools?
Is there a way to set some default properties for MooTools effects like duration or transition?
That would make it easier to make all those effects like element.tween(); or element.reveal() uniform.
2
votes
4answers
101 views
Making fire effect on iPhone
I'll describe ways that I already know, and can do, and want to hear another suggestions, or may be even solutions :)
Create N frames of fire with semi-transparent pictures (PNGs)
Like at this site
…
2
votes
4answers
223 views
Jquery using append with effects
how can I use .append with effects like show('slow')
having effects on append doesnt seems to work at all.
and it give results as normal show()
no transitions, no animations.
How Can I append …
2
votes
2answers
135 views
JQuery - slowly bg-image changing
Hello, I'm trying to make my hover-action with slowly bg-image changing.
.menu_part
{
border-left: 1px solid black;
background-image: url(../images/bg_menu.png);
float:left;
padding: …
2
votes
3answers
132 views
Is there a cross-browser way to ignore opacity when using jquery’s clone()?
I'm using tables in my document, and I want to be able to have a user submit a new item to a list, then have it "automagically" appear at the top of the list (yes, this would be easier with DIVs but …
2
votes
3answers
169 views
Set Transparency of a DIV and its contents using jQuery
Does anyone know the best way to set the transparency of a DIV and its contents using jQuery?
Thank you in advance.
2
votes
3answers
893 views
jQuery - slide up / edit html / slide down
I'm trying to slide a div containing a table up, change the rows of the table with ajax calls, and then slide the containing table back down. I can't seem to get the series of callbacks to work …
