views_slideshow 的备用分页

发布于 2024-12-12 00:21:25 字数 407 浏览 0 评论 0原文

我在 Drupal 6 中使用views_slideshow 在网站的首页上创建了一个滑块。我拥有除自定义寻呼机之外的所有功能。我有数字寻呼机(即 1 2 3 4 5 6 7),但我的规范要求这些是简单的文本项目符号。我可以轻松地使用 css 中的图像来完成此操作,但是我可以为views_slideshow 分页中的所有链接实现统一的字符吗?

在构建视图时,我一直在查看幻灯片设置中的高级选项。我尝试添加类似的内容:

pagerAnchorBuilder: var return_var = '

  • o
  • '

    我在 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 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(2

    百变从容 2024-12-19 00:21:25

    您只能使用 CSS 来完成此操作。假设这个 HTML 源:

    <ul>
        <li><a href="#">1</a></li>
        <li><a href="#">2</a></li>
        <li><a href="#">3</a></li>
        <li><a href="#">4</a></li>
    </ul>    
    
    
    ul{overflow:hidden}
    li a{float:left;width:10px;height:10px;background:red;margin-right:5px;display:block;text-indent:-999em}
    

    jsFiddle

    只需使用背景图像而不是颜色。

    You can do this with CSS only. Assuming this HTML source:

    <ul>
        <li><a href="#">1</a></li>
        <li><a href="#">2</a></li>
        <li><a href="#">3</a></li>
        <li><a href="#">4</a></li>
    </ul>    
    
    
    ul{overflow:hidden}
    li a{float:left;width:10px;height:10px;background:red;margin-right:5px;display:block;text-indent:-999em}
    

    jsFiddle

    Just use a background image instead of the color.

    我纯我任性 2024-12-19 00:21:25

    你知道这个补丁吗?
    使 pagerAnchorBuilder 可主题化

    Do you know about this patch?
    make pagerAnchorBuilder themeable

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文