如何使用 jQuery GalleryView 插件删除它们?
I'm using the jQuery GalleryView plugin, and I want to remove the arrow that slides along the thumbnails when the transitions take place.
I can't figure out how to remove this (tried using the 'nav_theme' configuration option but no luck).
Does anybody know how this is done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其添加到您的 CSS 中:
或者如果您愿意,可以在 javascript 中执行此操作:
您也可以尝试:
默认情况下,指针似乎有一个 ID
#pointer
,因此其中之一应该可以为您完成此操作。Try adding this to your CSS:
Or do it in javascript if you want:
You could also try:
The pointer seems to have an ID of
#pointer
by default, so one of these should do it for you.