-1

Nivo 滑块工作正常,但没有任何效果。

4

2 回答 2

3

它是一个 z-index 问题,在 nivo-slider.css:18

.nivoSlider img {
...
    z-index: 50;
}

这是覆盖动画,删除它,你会看到过渡。

于 2012-06-12T02:54:12.487 回答
1

首先,您需要在<script>标签内提供<head>标签。

<!-- Javascripts -->
<script src="http://ipmgroup.org/wp-content/themes/ipmgroup/scripts/jquery-1.7.1.min.js"></script>
<script src="http://ipmgroup.org/wp-content/themes/ipmgroup/scripts/jquery.nivo.slider.js"></script>    
<script src="http://ipmgroup.org/wp-content/themes/ipmgroup/scripts/ipm.main.js"></script>

尝试更改它并检查。最后,CSS部分:

// Need more z-index from default
//Line Number 45!
.nivo-slice {z-index: 100;}
//Line Number 18!
.nivoSlider img {z-index: 10;}

试试这个,它的工作原理!:)

于 2012-06-12T02:54:33.120 回答