1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| setInterval(function() {
$('.hvr-icon-hang').css({
"-webkit-animation-name": "hvr-icon-hang-sink, hvr-icon-hang",
"animation-name": "hvr-icon-hang-sink, hvr-icon-hang",
"-webkit-animation-duration": ".3s, 1.5s",
"animation-duration": ".3s, 1.5s",
"-webkit-animation-delay": "0s, .3s",
"animation-delay": "0s, .3s",
"-webkit-animation-timing-function": "ease-out, ease-in-out",
"animation-timing-function": "ease-out, ease-in-out",
"-webkit-animation-iteration-count": "1, infinite",
"animation-iteration-count": "1, infinite",
"-webkit-animation-fill-mode": "forwards",
"animation-fill-mode": "forwards",
"-webkit-animation-direction": "normal, alternate",
"animation-direction": " normal, alternate"
});
}, 600); |