views_slideshow 的备用分页
我在 Drupal 6 中使用views_slideshow 在网站的首页上创建了一个滑块。我拥有除自定义寻呼机之外的所有功能。我有数字寻呼机(即 1 2 3 4 5 6 7),但我的规范要求这些是简单的文本项目符号。我可以轻松地使用 css 中的图像来完成此操作,但是我可以为views_slideshow 分页中的所有链接实现统一的字符吗?
在构建视图时,我一直在查看幻灯片设置中的高级选项。我尝试添加类似的内容:
pagerAnchorBuilder: var return_var = '
我在 Drupal 的其他地方读到论坛上说这个字段不接受函数作为返回,所以我们必须像上面那样做。其他人也遇到了这个问题,但我还没有找到答案。有什么想法吗?
I've created a slider on the front page of a website using views_slideshow in Drupal 6. I have all the functionality except for a custom pager. I have the numeric pager (i.e. 1 2 3 4 5 6 7), but my spec requires these to be simple text bullets. I could easily do this with images in css, but can I achieve a uniform character for all links in the views_slideshow pagination?
I've been looking at the advanced options in the slideshow settings when building my view. I have tried adding something like:
pagerAnchorBuilder: var return_var = '<li><a href="#">o</a></li>'
I read elsewhere in Drupal forums that this field will not accept a function as a return, so we must do it like above. Others are having this issue, but I have not been able to find a response. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只能使用 CSS 来完成此操作。假设这个 HTML 源:
jsFiddle
只需使用背景图像而不是颜色。
You can do this with CSS only. Assuming this HTML source:
jsFiddle
Just use a background image instead of the color.
你知道这个补丁吗?
使 pagerAnchorBuilder 可主题化
Do you know about this patch?
make pagerAnchorBuilder themeable