home.js 306 B

12345678910111213141516
  1. $(function(){
  2. var num = 0;
  3. var gun = 0;
  4. var clone1 = $('.demo1').clone(true);
  5. $('.home').append(clone1[0]);
  6. setInterval(function(){
  7. num++;
  8. if(num>4){
  9. num = 1;
  10. $('.home').css('top', 0);
  11. }
  12. gun = num*(-100);
  13. $('.home').animate({'top': gun + '%'},500);
  14. },30000)
  15. })