我正在使用一个需要 position:relative 的插件来为 UL 中的 li 项目设置动画。
这是一个演示:http: //jsfiddle.net/bleachie/aJPRp/
在 IE7 中 overflow:hidden 不起作用,但如果 position:relative 从 UL 中删除则起作用;该插件不起作用。
我将如何在 IE7 中解决此问题?
谢谢。
CSS
ul {
padding: 0;
margin: 0;
list-style: none;
}
.jSlots-wrapper {
overflow: hidden;
height: 20px;
display: inline-block; /* to size correctly, can use float too, or width*/
border: 1px solid #999;
}
.slot {
float: left;
}
HTML
<ul class="slot">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
</ul>
<input type="button" id="playNormal" value="play">
Javascript
$('.slot').jSlots({
spinner : '#playNormal',
winnerNumber : 7
});