Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Mit jQuery geht das sehr einfach. Schau dir mal die Funktionen delay() und fadeIn() an.
Geht beides. Ich sehe keinen Grund, warum man delay() nicht an den Anfang setzen könnte. Und die Funktion fadeIn() hat einen Parameter für die Dauer der Animation bzw. die Geschwindigkeit.
jQuery(document).ready(function(){
jquery.delay( 200 ).('#test').fadeIn( "slow", "linear");
});
$('#test').delay(2000).fadeIn({duration: "slow", easing: "linear"});