i try to make a css3 animation based on the blury ex here : http://www.alexpeattie.com/projects/animate-textshadow/
But i cant make it works :
$(function(){
$(".t").hover(function() {
$(this).animate({textShadow: "#fff 0 0 10px"});
}, function() {
$(this).animate({textShadow: "#fff 0 0 0px"});
});
});
Any idea ?
The result online is here : http://sowuz.com/index.php
There are many comments on the project page saying that
jquery.animate-textshadow.jsdoes not work with jQuery 1.8.x. From the website:Here is an example of your code working with jQuery 1.7.2, but it does not work in jQuery 1.8.2.