滚动到 jcarousel 的第一项
我在选项卡式界面的页面上有多个 jcarousel 实例。单击相关选项卡时,我需要能够滚动到每个轮播的第一项,但不确定如何执行此操作。我查看了静态控件示例(http://sorgalla.com/projects/jcarousel /examples/static_controls.html),但无法理解如何使其适用于多个轮播。
任何帮助将非常感激。我正在进行的工作在这里: http://www.brainsdesign.com/ client/Lab/14512/style.html
非常感谢,
克里斯
I have multiple instances of jcarousel on a page within a tabbed interface. I need to be able to scroll to the first item of each carousel when the relevant tab is clicked and am unsure how to do this. I've looked at the static controls example (http://sorgalla.com/projects/jcarousel/examples/static_controls.html) but cannot fathom how to get this working for multiple carousels.
Any help would be greatly appreciated. My work-in-progress is here: http://www.brainsdesign.com/client/Lab/14512/style.html
Many thanks,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要滚动到 jCarousel 中的特定任意位置...
ul.jcarousel
).scroll()
就可以了。在代码中:
如果想使用 jQuery 选择器查找特定元素,则 滚动到该元素(按元素而不是位置滚动 jCarousel)。这很简单:每个 jCarousel 元素都有一个属性 jcarouselindex。使用 varposition = $('#some-element').attr('jcarouselindex'); 查找它。
示例:
其中
menuOption
是一个锚点,如下所示:
注意:使用
scrollTo - 1
非常重要,因为 索引从 0 开始。To scroll to a specific arbitrary position in jCarousel...
ul.jcarousel
).scroll()
on it.In code:
If ever want to look up a specific element using jQuery selectors, then, scroll to that element (scrolling a jCarousel by element not by position). It's easy: each jCarousel element has an attribute, jcarouselindex. Look it up with
var position = $('#some-element').attr('jcarouselindex');
.Sample:
where
menuOption
is an anchor<a>
like this one:Note: it's important to use
scrollTo - 1
because index is 0 based.这是解决方案,管理它以
http://sorgalla.com/projects/jcarousel 的形式工作/examples/static_controls.html
我有一个选项卡式界面,例如:
每个选项卡都包含 jcarousel 滑块。
我已经检查了您的网站...所以认为您应该能够从这里获取代码。
在 jCarousel 中,通过 initCallBack 调用函数,并在单击选项卡时触发自定义函数,一般滚动到位置 1 进行重置!
就是这样。
谢谢,
埃纳耶特
Here is the solution, managed it to work form
http://sorgalla.com/projects/jcarousel/examples/static_controls.html
I have a tabbed interface like:
And each tab contains jcarousel slider.
I have checked your site...so thinking you should be able to get the code from here.
In the jCarousel call a function by initCallBack and trigger the custom function when the tab is clicked do go general scroll to position 1 to reset!
Thats it.
Thanks,
Enayet
您可以使用类似的内容:
其中位置是 jcarousel 的开始位置或您想要到达的索引。
这是来自 jquery.jcarousel.js 源文件:
You can use something like:
Where position is the start of your jcarousel or the index you want to get to.
This is from the jquery.jcarousel.js source file: