いくつかのキャンバスと画像とすべてを含む 1 つの 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(){});
});
});
ここでメインとテストは2つの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>
私を助けてください。