Guest User

Untitled

a guest
Jun 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $(document).ready(function(){
  2. jQuery.fn.fadeToggle = function(speed, easing, callback) {
  3. return this.animate({opacity: 'toggle'}, speed, easing, callback); };
  4. $(".one").hide();
  5. $(".two").hide();
  6. $(".three").hide();
  7.  
  8. $(".one").fadeIn().fadeTo(4000, 1).fadeOut();
  9. $(".two").fadeTo(4700, 0).fadeToggle().fadeTo(400, 1).fadeTo(4000, 1).fadeOut();
  10. $(".three").fadeTo(9500, 0).fadeToggle().fadeTo(400, 1).fadeTo(4000, 1).fadeOut();
  11. while 1=1 loop
  12.  
  13. $(document.body).mouseenter(function () {
  14. });
  15.  
  16.  
  17.  
  18. });
Add Comment
Please, Sign In to add comment