我有一个div包含一些画布和&图像和所有。
现在我想做的是,我想旋转这个div但是当div从左向右移动时,同一个div从左开始显示。
有些事情只是影响而已。
我尝试过使用2个div,它运行良好,但管理我怎样才能使用1 div进行操作?
这是我的代码。
$('#main').swipeleft(function( event ) {
$('#test').animate({ 'left': window.innerWidth }, 1,function(){
$('#main').animate({"left": -width}, "fast", function(){});
$('#test').animate({"left": -width}, "fast", function(){});
});
});
这里主要&测试是两个div。
这是HTML(简单)
<div class="whiteBackground" id="main" style="position: relative;">
<img src="img1" style="z-index: 1; top:0px;" height="200px" width="200px">
</img>
</div>
<div class="whiteBackground" id="test" style="position: relative;">
<img src="img1" style="z-index: 1; top:0px;" height="200px" width="200px">
</img>
</div>
请帮帮我。
答案 0 :(得分:0)