0

我已经搜索过这个,但找不到我需要的一件事。我想在轨道滑块中使用我自己的子弹。

现在我的问题: - 我怎样才能添加我的子弹(滑块正在工作,但我不知道如何添加子弹)
- 我怎样才能让子弹改变?因为我为它被选中时制作了一张图片,在它未被选中时制作了一张图片。

提前致谢。

4

1 回答 1

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; }

但它使用图像精灵

如果每个都有单独的图像,请使用每个的背景属性来指定图像。

于 2012-10-16T10:57:39.983 回答