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.
mc._alpha = 0;
Object.prototype.fadeIn = function (pSchritte)
{
this.pSchritte = 0;
this.onEnterFrame = function ()
{
this._alpha += pSchritte;
if (this._alpha > 100)
{
delete this.onEnterFrame;
}
};
};
ASSetPropFlags (Object.prototype, "fadeIn", 1);
mc.onEnterFrame = function ()
{
this.fadeIn (5);
};