jQuery(function($){
var animationName = 'animated ' + 'rubberBand';
var animationEnd = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend';
$('object1936746701').hover(function(){
$(this).addClass(animationName).one(animationEnd, function(){
$(this).removeClass(animationName);
});
});
});
This code works, But I'm trying to load it on webpage load and can't work it out.
Comments
Post a Comment