WebサイトにjQueryの問題がいくつかありますが、問題が何であるかわかりません。誰かチェックしてもらえますか?Firefoxには何らかの理由で最も多くの問題があります。
アニメーションは単純なjqueryアニメーションであり、うまく機能するはずですが、私のブラウザーではまったくスムーズではありません。 http://myfirstletters.com/base.html http://myfirstletters.com/media/js/functions.js(アニメーションは関数start_animationとmove_jsにあります) http://myfirstletters.com/media/js/main。 js
お時間をいただきありがとうございます
function start_animation() {
$('#website').stop().animate();
window_height= $(".intro").height();
animation = ((window_height)*-4)-20;
$('#intro_website').css('marginTop', -window_height-20);
$('#intro_website').animate({
marginTop: animation
}, 17000, 'linear', function(){
status=true;
$('#intro_website').stop().animate();
$('#website').css('zIndex', 1);
$('#intro_website').css('display', 'none');
$("#skip").css('display', 'none');
});
}