jQuery:如何根据您在导航中的位置产生不同的效果
我有这个:
$('#mask').cycle({
fx: 'scrollLeft',
timeout: 0,
speed: 300,
startingSlide: 0
});
但是在某种情况下,我希望 fx 为scrollRight,比如说当(myCondition == true)时
我该怎么做?
I have this:
$('#mask').cycle({
fx: 'scrollLeft',
timeout: 0,
speed: 300,
startingSlide: 0
});
But there is a certain case where I want the fx to be scrollRight lets say when (myCondition == true)
how do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的意思是这样吗:
do you mean this:
我冒险假设要向右滚动,请将
fx:
更改为scrollRight。在这种情况下I'm going out on a limb and assuming that to scroll right you change
fx:
to scrollRight. In that case这应该可行。
不过,创建一个 _fx() 函数会更聪明。
This should work..
It would be smarter to make an
_fx()
function, though..