我使用以下站點的基本JQuery SLider。基本JQuery滑塊左右滑動效果
我想滑塊從左至右方向滑動,它目前由右至左滑動。
jQuery(document).ready(function($) {
$('#myslider').bjqs({
animtype : 'slide',
height : 126,
width : 244,
responsive : true,
randomstart : true,
showmarkers : false,
hoverpause : false,
nexttext : '<img src="img/next-horizontal.png">',
prevtext : '<img src="img/prev-horizontal.png">',
animduration : 350, // how fast the animation are
animspeed : 3000, // the delay between each slide
});
});