0
I have the following code:
$(document).ready(function(){
$('#cadastre-se').click(function(){
$('.icon-cracha').stop(true, true).delay(500).animate({top: "+0"},1000);
});
});
.icon-cracha{
width:100px;
height: 100px;
background-color:black;
border-radius: 100%;
position:absolute;
top:-100px;
}
button{
margin-top: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div class="icon-cracha"></div>
<button id="cadastre-se" name="submit" class="btn">Próximo</button>
I would like that effect to repeat every time I click the button próximo
. Because here in my project it only happens in the first step of the registration, in the other the ball already appears right without effect.
Man was just that, thank you very much!
– user27585
In need of help, a touch!
– RBoschini