Guest User

Untitled

a guest
Nov 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $(function(){
  2. $('.fadein img:gt(0)').hide();
  3. setInterval(function(){
  4. $('.fadein :first-child').fadeOut()
  5. .next('img').fadeIn()
  6. .end().appendTo('.fadein');},
  7. 3000);
  8. });
Add Comment
Please, Sign In to add comment