一個簡單的功能,鼠標放在圖片上在該圖片的上層顯示放大后的圖片,浮出的效果
$("ul.thumb li").hover(function() { $(this).css({'z-index' : '10'}); var _width = $(this).find("img").width() * 1.5, _height = $(this).find("img").height() * 1.5, _top = _height / 2, _left = _width / 2; $(this).find('img').addClass("hover").stop() .animate({ marginTop: '-' + _top + 'px', marginLeft: '-' + _left +'px', top: '50%', left: '50%', width: _width + 'px', height: _height + 'px', padding:'10px' }, 200); } , function() { $(this).css({'z-index' : '0'}); $(this).find('img').removeClass("hover").stop() .animate({ marginTop: '0', marginLeft: '0', top: '0', left: '0', width: '100%', height: '165px', padding: '5px' }, 400); });
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。