Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Function to enlarge column text on hover
  2.  
  3. $(document).ready(function(){
  4.   $('.column').hover(function() {
  5.         $(this).stop().animate({ fontSize : '55px' });
  6.   },
  7.   function() {
  8.         $(this).stop().animate({ fontSize : '50px' });
  9.   });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement