Which is the correct syntax to animate box-shadow with jQuery?
$().animate({?:"0 0 5px #666"});
|
Which is the correct syntax to animate box-shadow with jQuery?
|
||||
|
|
|
Using Edwin Martin's jQuery plugin for shadow animation, which extends the
|
|||||||||||||||||
|
|
If you are using jQuery 1.4.3+ then you can take advantage of the cssHooks code that was added. By using the boxShadow hook: https://github.com/brandonaaron/jquery-cssHooks/blob/master/boxshadow.js You can do something like this:
The hook doesn't let you animate the color yet but I am sure with some work that could be added. |
|||||||||||||
|
|
Here is an example of how to do it without a plugin: jQuery animated Box But it doesn't have the extra functionality that comes with the use of a plugin, but I personally like to see (and understand) the method behind the madness. |
|||
|
|