我已经搜索过这个但是找不到我需要的东西。 我想在轨道滑块中使用我自己的子弹。
现在我的问题: - 如何添加我的子弹(滑块正在工作,但我不知道如何添加子弹)
- 我怎么能让子弹改变?因为我在选中时制作了一张图像,而在未选中时则制作了一张图像。
提前感谢。
答案 0 :(得分:1)
您可以在orbit.css文件中看到这些代码
.orbit-bullets li {
float: left;
margin-left: 5px;
cursor: pointer;
color: #999;
text-indent: -9999px;
background: url(/playground/playground/jquery-image-slider-plugin/orbit/bullets.jpg) no-repeat 4px 0;
width: 13px;
height: 12px;
overflow: hidden; }
.orbit-bullets li.active {
color: #222;
background-position: -8px 0; }
但它使用image sprites。
如果每个图像都有单独的图像,请使用每个图像的背景属性来指定图像。