アニメーション モバイル サイト (iPhone 用に最適化) の次のロジックがあります。208 は全画面表示になる前の高さです。
var pageHeight = $(window).height();
if (pageHeight == 320 ) {
$('#slide3').animate({bottom: '0px',}, 3000, function() {$('.slide3Txt').animate({top:'30px'},500);godown3Pt2()});
}
if (pageHeight != 208) {
$('#slide3').animate({bottom: '0px',}, 3000, function() {$('.slide3Txt').animate({top:'94px'},500);godown3Pt2()});
}
私の問題は、横向きのiPhoneで両方のイベントが次々に発生することです-このロジックを改善するための提案はありますか?