Advertisement
Sjeev

Untitled

Oct 20th, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(document).ready(function(){
  3. $( ".leftbar" ).mouseenter(function() {
  4. $( "body" ).addClass( "myclass", 1000, "easeOutBounce" );
  5. });
  6. });
  7.  
  8. $(document).ready(function(){
  9. $( ".leftbar" ).mouseleave(function() {
  10. $( "body" ).removeClass( "myclass", 1000, "easeOutBounce" );
  11. });
  12. });
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement