Guest User

Untitled

a guest
Apr 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $(this).parent().delegate('.gsCanvas', 'mouseover mouseout', function(event) {
  2.       over = $options.reverse ? 1 : 0;
  3.       out = $options.reverse ? 0 : 1;
  4.       (event.type == 'mouseover') && $(this).stop().animate({'opacity': over}, $options.fadeTime);
  5.       (event.type == 'mouseout') && $(this).stop().animate({'opacity': out}, $options.fadeTime);
Add Comment
Please, Sign In to add comment