6

我正在建立一个顶部有一个滑块的网站,我想使用 unslider,因为它看起来很容易。

根据该站点,您应该只使用该功能-dots: true

我有,但我的滑块没有任何幻灯片。

我正在尝试设置的站点

(这是一个学校项目)

4

2 回答 2

16

尝试添加一些 CSS。

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
}

.dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  text-indent: -999em;
  border: 2px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  opacity: .4;
  -webkit-transition: background .5s, opacity .5s;
  -moz-transition: background .5s, opacity .5s;
  transition: background .5s, opacity .5s;
}

.dots li.active {
  background: #fff;
  opacity: 1;
}
于 2013-07-08T16:06:25.017 回答
1

只需转到 unslider.css 文件并添加:

.unslider {
    overflow: auto;
    margin: 0;
    padding: 0;
    /*Added*/
    position: relative;
}

在 unslider-dots.css 添加:

/*added*/
.unslider-nav{
    position: absolute;
    width: 100%;
    bottom: 2%;
}

你只需要在你的剧本上说nav:truedots:true.

希望它也适合你。

于 2016-04-05T02:01:54.950 回答