Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
stime=getTimer();
mx=_root._xmouse;
my=_root._ymouse;
this.onEnterFrame=function() {
if (_root._xmouse!=mx || _root._ymouse!=my) {
stime=getTimer();
mx=_root._xmouse;
my=_root._ymouse;
Mouse.show();
} else {
if (getTimer()-stime>5000) {
Mouse.hide();
}
}
}