我希望在应用程序中使用内容滑块。我将 BxSlider 列入了候选名单。请建议实现屏幕截图中显示的自定义寻呼机的方法

我指的是 BxSlider API。
所需解决方案的屏幕截图

请帮忙!!

最佳答案

这得到了解决。
更新了样式如下:

a.pager-active > div{
    background: url("/images/dot_filled.png") no-repeat scroll !important;
    display:inline;
    outline:none;
}

.bx-pager a > div{
    display:inline;
    padding:2px;
    background: url("/images/dot_empty.png") no-repeat scroll;
    position:relative;
    top:10px;
    outline:none;
}

我提供这个答案,以便它可以帮助那些希望拥有自定义 BxSlider Pager 的人。
谢谢!!

关于javascript - BxSlider 自定义寻呼机,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7821023/

10-12 14:07