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.
MovieClip.prototype.addStripe = function(nr) {
stripe = this.attachMovie("bild", "bild"+nr, nr, {_x:20, _y:50, ID:nr});
maske = this.stripe.attachMovie("mask", "mask",1, {ziel:nr*20})
stripe.setMask(maske)
maske.onEnterFrame = function() {
this.xpos += this.vx
this.vx = (this.vx + ( this.ziel - this.xpos)/90)/1.08
this._y = this.xpos
}
}
bild_welle = function(i,max_stripes) {
if (i<=max_stripes) {
this.addStripe(i)
} else {
clearInterval(t)
}
}
t = setInterval( function(){ _root.bild_welle(i,20);i++ }, 100 );
this.vx = (this.vx + ( this.ziel - this.xpos)/90)/1.08