I wonder if you can do a button with Bounce effect in jquery, but the effect is continuous. I have a button ready but the duration of the effect is only 5s, I wanted it to continue the effect and it did not stop, it follows the file below:
$(document).ready(function(){
$('#down').hide();
$('#animate').animate({fontSize: '10vh'},2000,function(){
$('#down').fadeIn(500,function(){
$(this).effect( "bounce",{ times: 3 }, 5000 );
});
});
});