vote up 6 vote down star
4

I'm brand new to JQuery and have some experience using Prototype. In Prototype, there is a method to "flash" and element -- i.e. briefly highlight it in another color and have it fade back to normal so that the user's eye is drawn to it. Is there such a method in JQuery? I see fadeIn, fadeOut, and animate, but I don't see anything like "flash". Perhaps one of these three can be used with appropriate inputs?

flag

46% accept rate

6 Answers

vote up 6 vote down

You could use the highlight effect in jQuery to achieve the same, I quess.

link|flag
vote up 6 vote down

You could use this plugin (put it in a js file and use it via script-tag)

http://plugins.jquery.com/project/color

And then use something like this:

jQuery.fn.flash = function( color, duration )
{

    var current = this.css( 'color' );

    this.animate( { color: 'rgb(' + color + ')' }, duration / 2 );
    this.animate( { color: current }, duration / 2 );

}

This adds a 'flash' method to all jQuery objects:

$( '#importantElement' ).flash( '255,0,0', 1000 );
link|flag
vote up 2 vote down

You don't need to install any plug-ins. You can do it with standard jQuery functions, and background colors (assuming you're dealing with an element that supports background colors, of course). For example, to draw attention to all the divs on your page, you could use the following code:

$("div").stop().css("background-color", "#FFFF9C")
.animate({ backgroundColor: "#FFFFFF"}, 1500);
link|flag
Unfortunately, there is a bug in jQuery that intermittently prevents the color from changing -> dev.jqueryui.com/ticket/4251 – colbeerhey Jul 17 at 21:37
this is quite versatile (you can animate any property, like color, instead of backgroundColor). In fact there is a bug, but if this effect is for eye-candy only, it is sufficient to wrap the call with a try-catch block: if it fails, it won't show, but it won't produce errors either. – Palantir Oct 14 at 7:14
vote up 2 vote down

Would a pulse effect(offline) JQuery plugin be appropriate for what you are looking for ?

You can add a duration for limiting the pulse effect in time.


As mentioned by J-P in the comments, there is now his updated pulse plugin.
See his GitHub repo. And here is a demo.

link|flag
Updated pulse plugin: james.padolsey.com/javascript/… – J-P 2 days ago
vote up 0 vote down

doesnt seem to work

link|flag
vote up 0 vote down

Nice jQuery UI highlight effect for what i was looking for, thanks VonC.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.