0
我想滑動一個圖像左側使用jquery動畫與緩動插件,它似乎並不想工作。jQuery動畫幻燈片左
我與ID = 1的圖像和下面的JavaScript
$(document).ready(function() {
$('#center-photo img:first').show();
$('#next').click(function() {
var active = $('#center-photo img:first');
//Slider Animation
$('#1')
.animate(
{ left: 200 }, {
duration: 'slow',
easing: 'easeOutBounce'
})
.animate(
{ left: 0 }, {
duration: 'slow',
easing: 'easeOutBounce'
});
});
});