我有一个滑块,它的活动项目比其他项目大。单击控件时,下一个/上一个项目将获得活动类。它正在工作,但我想为此添加一个平滑的效果。有任何想法吗?
代码:
$('#next').click(function(){
$('#wrap').find('.active').removeClass('active').next().addClass('active');
$('#wrap img:first').remove().appendTo('#wrap');
});
$('#prev').click(function(){
$('#wrap').find('.active').removeClass('active').prev().addClass('active');
$('#wrap img:last').remove().prependTo('#wrap');
});
示例:http: //jsfiddle.net/zXjzU/1/
谢谢!