我正在使用 jQuery 和 fadeIn 淡入页面上的内容片段。它正确淡入,但问题是它在Android中自动淡入后立即淡出。:-\
有任何想法吗?
$(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);
});
});