Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.56 KB | None | 0 0
  1. jQuery(document).ready(function( $ ){
  2.     $('.woocommerce ul.products li.product').hover(
  3.      
  4.       function() {
  5.         $(this).find('img').css({'transform': 'scale(1)',
  6.                                  'top': '0',
  7.                                  'position': 'relative'
  8.                                 });
  9.       },
  10.       function() {
  11.         $(this).find('img').css({'transform': 'scale(1.6, 1.5)',
  12.                                  'top': '60px',
  13.                                  'position': 'relative'
  14.                                 });
  15.       }
  16. )})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement