nivoslider 中的数字而不是点

发布于 2024-12-21 17:51:01 字数 62 浏览 1 评论 0原文

有谁知道如何将 nivoslider 中的点更改为数字? 我尝试查看 css 和代码,但找不到任何内容。 谢谢

Does anyone know how to change the points to numbers in nivoslider?
I tried looking in the css and the code but I can't find anything.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

再见回来 2024-12-28 17:51:01

只需注释 Nivo CSS 文件中的 text-indent 和图像 background

.theme-default .nivo-controlNav a {
    /*background: url("bullets.png") no-repeat scroll 0 0 transparent;*/
    border: 0 none;
    display: block;
    float: left;
    height: 22px;
    margin-right: 3px;
   /* text-indent: -9999px; */
    width: 22px;
}

说明:

数字在 内动态生成'bullets' 但通过 text-indent 从视口中删除。我们只需通过评论我建议的行来引入它们即可。

快乐编码。

Just comment the text-indent and the image background from the Nivo CSS file:

.theme-default .nivo-controlNav a {
    /*background: url("bullets.png") no-repeat scroll 0 0 transparent;*/
    border: 0 none;
    display: block;
    float: left;
    height: 22px;
    margin-right: 3px;
   /* text-indent: -9999px; */
    width: 22px;
}

Explanation:

The numbers are dynamically generated inside the <a> 'bullets' but removed from viewport with text-indent. We just have to bring them in by commenting the lines I suggested.

Happy coding.

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