关于我之前的问题;jQuery幻灯片动画。为了有一个滑块,我使用了这个解决方案:
HTML
<div class="bigBox">
<div class="try2">
<h3 id="test2">CLICK THIS</h3>
<p>This is a demonstration of jQuery SimpleDialog.</p>
</div>
<div class="try">
<p id="haha">CLICK THIS</p>
<p>This is a demonstration of jQuery SimpleDialog.</p>
</div>
</div>
JS
$('#haha').click(function() {
$('.try').hide("slide", {
direction: "left"
}, 1000);
$('.try2').show("slide", {
direction: "right"
}, 1000);
});
CSS
div.bigBox {
background-color:transparent;
width:100px;
height:125px;
position: relative;
}
.try, .try2{
width:100px;
height:125px;
position: absolute;
}
.try {
background-color:green;
}
.try2{
background-color:yellow;
}
问题是当您在谷歌浏览器中最小化/最大化页面(缩放不是 100%)时,滑块不再平滑滑动。但如果我在 Firefox/IE 中测试它,它运行良好。
是什么导致谷歌浏览器中滑块之间的空间?这是谷歌浏览器的错误吗?我该如何解决?谢谢你。