如何在“Galleriffic”中隐藏上一个/下一个控件jQuery 插件?
在我们的项目中,我们使用 jQuery 插件 - Galleriffic (http://www.twospy .com/galleriffic/),它允许您使用照片集进行幻灯片放映。
如何隐藏“分页”块中的上一个/下一个按钮?
导航(“分页”块)中应该只有页码,没有上一页/下一页按钮。
In our project we use plugin for jQuery - Galleriffic (http://www.twospy.com/galleriffic/), it allows you to do slideshow with photo set.
How to hide buttons prev/next in "pagination" block?
In the navigation ("pagination" block) should be only the page numbers without buttons prev/next.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案:
在 jquery.gallerific.js 中有一个函数负责创建块“pagination”(称为“buildPager”),在它创建上一个/下一个按钮。
我们必须在“buildPager”行中找到“//上一页链接”并放入按钮“上一页”类“隐藏”(在css中应拼写出相关规则 - .hide{display : 没有任何;})。
对于“下一步”按钮,应该执行类似的过程。
I found the solution:
In jquery.gallerific.js is a function which is responsible for creating the block "pagination" (it is called "buildPager"), in it creates the buttons prev/next.
We must find in "buildPager" line "/ / Prev Page Link" and put to the button "prev" class "hide" (in the css should be spelled out the relevant rule - .hide{display: none;}).
A similar procedure should be done and for the button "next".