我试图在每个动画之后改变 jQuery Rhinoslider 的方向。我认为这只是更改slideNextDirection
设置的问题,但我不太了解 jQuery 插件结构以及如何获得该设置。这是我尝试过的,但显然它不起作用:
$slider = $('#slider').rhinoslider({
slideNextDirection: 'toTop',
callBackNext: function() {
$(this).slideNextDirection = 'toLeft';
//tried this too :)
//$slider.slideNextDirection = 'toLeft';
return false;
}
});
有任何想法吗?