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.
rot.adest = 0;
rot.onRollOver = function() {
this.adest = 100;
}
rot.onRollOut = rot.onDragOut = function() {
this.adest = 0;
}
rot.onEnterFrame = function() {
this._alpha += (this.adest - this._alpha) / 10; // oder eine andere Zahl
}
on(rollOver) {
this.adest = 100;
}
on(rollOut, dragOut) {
this.adest = 0;
}
onClipEvent(enterFrame) {
if (this.adest == undefined) this.adest = 0;
this._alpha += (this.adest - this._alpha) / 10;
}