jQueryとfadeInを使用して、ページ上のコンテンツをフェードインしています。正しくフェードインしますが、AndroidではfadeInの直後に自動的にフェードアウトするという問題があります。:-\
何か案は?
$(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);
});
});