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);
});
});
しかし、明らかに私はイージングプラグインの実行に問題があります。