jquery(document).ready(function($){ $(document) // tile mouse actions .on("mouseover",'.swiper-detail_preview li', function() { if(!$(this).hasclass('lightbox-added')){ $(this) .children(".item_img") .css({ transform: "scale(1.6)" }); } }) .on("mouseout", '.swiper-detail_preview li',function() { $(this) .children(".item_img") .css({ transform: "scale(1)" }); }) .on("mousemove", '.swiper-detail_preview li',function(e) { if(!$(this).hasclass('lightbox-added')){ // console.log($(this).children("span")); $(this) .children(".item_img") .css({ "transform-origin": ((e.pagex - $(this).offset().left) / $(this).width()) * 100 + "% " + ((e.pagey - $(this).offset().top) / $(this).height()) * 100 + "%", }); } }); })