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.
fadeIn = function() {
volume += 2;
music.setVolume(volume);
if(volume > 90) {
clearInterval(timer);
gotoAndPlay(_currentframe+1);
}
}
music = new Sound(this);
music.attachSound("bgsound");
volume = 0;
music.setVolume(volume);
stop();
music.start(0, 99999999);
timer = setInterval(fadeIn, 50);