$(function(){
$("img[hover='offset']").hover(function(){
var _offset = $(this).offset();
$(this).offset({left : _offset.left + 1 , top : _offset.top + 1});
},function(){
var _offset = $(this).offset();
$(this).offset({left : _offset.left - 1 , top : _offset.top - 1});
});
});
转载于:https://my.oschina.net/u/583531/blog/300681