1
我在模擬效果,如http://www.templatemonster.com/flash-templates/27545.html(當您嘗試將鼠標懸停在縮略圖上時)。jQuery - 使用緩動插件調整圖像效果
進出口使用jQuery和寬鬆插件,這是我到目前爲止有:http://jsfiddle.net/RtYMV/
JS:
$(document).ready(function() {
$('.line a').hover(
function() {
$(this).find('img').stop().animate({
width: '88px',
height: '88px',
top: '6px',
left: '6px',
easing: 'easeInBounce'}, 111);
},
function() {
$(this).find('img').stop().animate({
width: '100px',
height: '100px',
top: '0',
left: '0',
easing: 'easeOutBounce'}, 111);
});
});
但很明顯,我有一個運行寬鬆插件問題。