0
I wonder if you have how to make a button with Bounce effect in jquery, however, the effect is continuous. I have a button ready but the duration of the effect is only 5s, I wanted to have continuity the effect and not stop, follows below the file:
$(document).ready(function(){
$('#down').hide();
$('#animate').animate({fontSize: '10vh'},2000,function(){
$('#down').fadeIn(500,function(){
$(this).effect( "bounce",{ times: 3 }, 5000 );
});
});
});
https://caniuse.com/#feat=css-Animation
– Renan Gomes
Ahhh!! mutio obrigadoo!! Very useful
– Burigo