我使用jQuery和淡入淡出頁面上的內容片段。它會正常淡入淡出,但問題是它會在Android中自動淡入淡出之後淡出。 : - \jQuery淡入淡出作品,但馬上消失
任何想法?
$(document).ready(function(){
// Fancy intro animation
$(".scroll-button").fadeIn(1000);
// Smooth the scrolling
$(".scroll-button").click(function(event){
var bodyElement;
event.preventDefault();
if($.browser.safari) {
bodyElement = $("body")
} else {
bodyElement = $("html,body")
}
bodyElement.animate({
scrollTop: $('#headerimage').position().top
}, 500);
$('.bottom-image').hide();
$(this.hash).fadeIn(1500);
});
});
不幸的是,它導致它根本不會在Android中加載。在IE,Firefox,Chrome,Safari,iOS ......一切都很好,只是出於某種原因Android。 –