我目前正在尝试为div
轮播型容器中的两个元素设置动画。这是 DOM 中出现的标记:
<div id="transitioner" style="width: 2880px; height: 775px; left: -1440px; ">
<div id="view1" class="view active" style="width: 1440px; height: 775px; ">
<header>
<h1>This is page 1</h1>
</header>
<article style="height: 699px; ">
<p>Tap me anywhere to go to the next view</p>
</article>
<footer>
<p>This is my footer</p>
</footer>
</div>
<div id="view2" class="view" style="width: 1440px; height: 775px; ">
<header style="">
<h1>This is page 2</h1>
</header>
</div>
</div>
这是#transitioner
元素的 CSS:
#transitioner {
position: absolute;
top: 0;
-webkit-transition: all 0.2s ease-in-out;
}
最后,JS:
function GotoView(view)
{
var roller = $('<div id="transitioner" />');
roller.width((viewport.width * 2)).height(viewport.height);
var current = $('.view.active').clone(true, true);
$('.view.active').remove();
current.prependTo(roller);
var new_view = view.clone(true, true);
view.remove();
new_view.appendTo(roller);
roller.appendTo($('body'));
$('body').addClass('transitioning');
//window.setTimeout(function() { roller.css({ left: 0 - viewport.width }) }, 2000);
roller.css({ left: 0 - viewport.width });
}
我更新了包含div
(即#transitioner
)的左侧位置,但除非我输入 a setTimeout
,否则 CSS 转换不会执行,而是包含div
简单地“跳转”到所需的新left
偏移量。
我已经整理了一个 jsFiddle,所以你可以看到症状 > http://jsfiddle.net/XPUPQ/
我的问题是:这是怎么回事,如果不使用 JS setTimeout()
,有什么办法可以规避这种情况吗?