我目前正在尝试在轮播式容器中设置两个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
),但除非我输入setTimeout
,否则CSS转换不会执行,而是包含{{1}只需“跳转”到所需的新div
偏移量即可。
我已经把一个jsFiddle放在一起,所以你可以看到症状&gt; http://jsfiddle.net/XPUPQ/
我的问题是:这是怎么回事,没有使用JS left
有什么方法可以绕过这个?
答案 0 :(得分:5)