以下のように 2 つの CSS トランニションがあります (どちらもページをカバーし、次々とスライドします)。
$('#div1').transition({ x: '-1500px', delay: 800 }, 1000);
$('#div2').transition({ x: '-1500px', delay: 1600 }, 1000);
最初のものは正常に機能しますが、2 つ目は機能しません。当然、すべての CSS と名前を確認しました。
#div1 {
background-color: #000;
z-index: 99;
position:absolute;
width: 100%;
height: 100%;
}
#div2 {
background-color: #fff;
z-index: 90;
position:absolute;
width: 100%;
height: 100%
}
誰でも私を助けることができますか?ありがとう!