please help about animate
- $(document).ready(function(){
- $(".arrow-layout").click(function(){
- $(".arrow-layout").animate({right:'5px',opacity:'0'},"slow");
- $(".img-circle").animate({marginTop:'-100px',opacity:'0',},"slow");
- location.href='profile.html';
- });
- });
How to animate have delay to the next script
$(".arrow-layout").animate({right:'5px',opacity:'0'},"slow");
Delay 1s
$(".img-circle").animate({marginTop:'-100px',opacity:'0',},"slow");
Delay 1s
after that redirect page to profile.html