jQuery.Cycle - 在同一容器上使用两种不同的效果
我目前正在使用 jQuery.Cycle 循环访问一些子
标记。但是,我希望默认的循环效果为 fade
,当我单击 next
或 prev
选择器时,我希望循环效果为根据单击的选择器暂时更改为 scrollRight
或 scrollLeft
。这可能吗?
jQuery 代码(如果需要):
$('#banner_content').cycle({
fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
timeout: 6500,
speed: 2000,
next: $("#right_arrow a"),
prev: $("#left_arrow a"),
});
I'm currently using jQuery.Cycle to cycle through a few child <div>
tags. However, I want the default cycle fx to be fade
, and when I click on the next
or prev
selectors, I want the cycle fx to temporarily change to scrollRight
or scrollLeft
depending on the selector clicked.
Is this possible?
jQuery code, if necessary:
$('#banner_content').cycle({
fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
timeout: 6500,
speed: 2000,
next: $("#right_arrow a"),
prev: $("#left_arrow a"),
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我在 jQuery 论坛 上添加了我的问题,创建者回复了以下 答案。
这是我为此开发的代码:
Ok, I added my question on the jQuery Forum, and the creator responded with the following answer.
Here is my code that I developed for this: