我希望模拟http://www.templatemonster.com/flash-templates/27545.html上的效果(当您尝试将鼠标悬停在缩略图上时)。
我正在使用 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);
});
});
但显然我在运行缓动插件时遇到了问题。