jquery 特色 ui 滚动条
我希望修改 jquery 特色 ui 示例。它在右侧显示 4 个拇指,我想知道如果我有更多类似 8 个拇指,我怎样才能让我的滚动条随着突出显示的功能移动?
我这里举一个例子,供大家参考。如何让包含拇指的 div 在显示所选项目时移动?
Im looking to modify the jquery featured ui example. It displays 4 thumbs to the right and im wondering if i were to have more like 8 how could i get my scroller to move with the highlighted feature?.
I have an example here for everyone to review. How can i get the div that contains the thumbs to move when the selected item is being displayed?
Sample Here:
http://www.barberveri.com/featured/index.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此页面使用 jQuery UI 选项卡插件 和 jScrollPane 插件。
我认为可以通过使用 jScrollPane 插件中的
scrollToElement()
方法和 jQuery UI Tabs 中的show
回调来实现此行为。基本上,当自动显示下一个选项卡内容时,从 jquery 数据获取 jScrollPane 插件的实例(以访问 API)并使用
ui.tab
(当前选项卡按钮)滚动ToElement。编辑:悬停面板时如何停止旋转。
根据 jquery tabs 文档,当传递 null 值时可以停止旋转
ms
参数(第二个)使用 .hover() 方法在悬停面板时调用旋转方法:
这是关于的工作示例jsfiddle。
This page uses jQuery UI Tabs plugin and jScrollPane plugin.
I think this behavior can be achieve by using the method
scrollToElement()
from the jScrollPane plugin and theshow
callback from jQuery UI Tabs.Basically, when the next tab content is displayed automatically, get the instance of the jScrollPane plugin from jquery data (to get access to the API) and use
ui.tab
(current tab button) to scrollToElement.Edit: How to stop rotation when hovering a panel.
According to the jquery tabs documentation, the rotation can be stopped when passing a null value for the
ms
parameter (second)Use the .hover() method to call the rotate method when hovering the panels:
Here is working example on jsfiddle.