Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var $images = $("#banner-general img[class*=banner-part-]");
  2. $images.hover( function(){
  3.  
  4. (function hidenext(jq){
  5. jq.eq(0).fadeOut("fast", function(){
  6. (jq=jq.slice(1)).length && hidenext(jq);
  7. });
  8. })($images.not(this))
  9.  
  10. }, function(){} )
Add Comment
Please, Sign In to add comment