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?
|
4
|
|
|
|
|
|
You could use the highlight effect in jQuery to achieve the same, I quess. |
||
|
|
|
|
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:
This adds a 'flash' method to all jQuery objects:
|
||
|
|
|
|
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:
|
||||
|
|
|
Would a 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. |
|||
|
|
|
doesnt seem to work |
||
|
|
|
|
Nice jQuery UI highlight effect for what i was looking for, thanks VonC. |
||
|
|
