e se non lo capite adesso com'e' fatto quell' effetto .. siete un caso disperato![]()
http://www.3site.it/varie/movieStretch.html
e se non lo capite adesso com'e' fatto quell' effetto .. siete un caso disperato![]()
http://www.3site.it/varie/movieStretch.html
ok.
niente AS. daccordo.
ma almeno dacci uno straccio di intuizione sul tuo file.....poi giochiamo all'indovinello.
chi č che ci riesce becca un premio ok? :tongue:
Altro che niente AS, č tutto in ASOriginariamente inviato da atarutek
ok.
niente AS. daccordo.
Secondo me e dico secondo me il movie prima č 'largo' e man mano viene portato alle sue dimensioni originali![]()
Ma ho sparato la prima fagianata che m'č venuta in mente![]()
la sagoma.. voilą !
http://www.webbeloz.it/laboratorio/mask_verticale.html
:mavieni:
Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
Mechanics & Expert Tuning Fix Z3 Roadster Community
ci sono 2 maschere adesso e si muovono sfalzateOriginariamente inviato da webbeloz
la sagoma.. voilą !
http://www.webbeloz.it/laboratorio/mask_verticale.html
cmq meglio di prima :metallica
stavo pubblicando.. non vale
![]()
prova ora! :sgrat:
Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
Mechanics & Expert Tuning Fix Z3 Roadster Community
passami quell' immagine cosi' vedi la differenzaOriginariamente inviato da webbeloz
stavo pubblicando.. non vale
![]()
prova ora! :sgrat:![]()
questo č quanto di meglio posso fare con i Proto a mia disposizione!
a parte l' immagine che probabilmente usandone un' altra renderebbe meglio l' effetto.. http://www.webbeloz.it/laboratorio/mask_verticale.htmle guai a che si permette di contraddirmi
![]()
:gren:
![]()
ps. se mando immagine deve tornare tutto compreso..![]()
Interactive Html/CSS/JS Playground | @webbeloz ( cip..cip! )
Mechanics & Expert Tuning Fix Z3 Roadster Community
:quote: :quote: :quote:
THANX
MovieClip.prototype.vaiii = function (path, velocity, stretch) {
this.depthRemember = Math.round(Math.random() * 1000000);
this.scaleFactor = (stretch == undefined) ? 40 : stretch;
this.stretchScroller = 0;
var stretched = 'stretched' + this.depthRemember;
this.duplicateMovieClip(stretched, this.depthRemember++);
path[stretched]._xscale = 100 * this.scaleFactor;
var masker = 'masker' + this.depthRemember;
this.createEmptyMovieClip(masker, this.depthRemember++);
with (this[masker]) {
lineStyle(0, 11250603);
moveTo(path[this]._x, path[this]._y);
beginFill(11250603, 100);
lineTo(this._width, path[this]._y);
lineTo(this._width, path[this]._height);
lineTo(path[this]._x, path[this]._height);
lineTo(path[this]._x, path[this]._y);
endfill();
}
path[stretched].setMask(this[masker]);
var oldwidth = this[masker]._width;
if (velocity == undefined) {
velocity = 1.2;
}
this.onEnterFrame = function () {
if (this.stretchScroller < this._width) {
this[masker]._x = this.stretchScroller;
this[masker]._width = oldwidth - this.stretchScroller;
path[stretched]._x = this._x + this.stretchScroller - this.stretchScroller * this.scaleFactor;
this.stretchScroller += velocity;
} else {
delete this.onEnterFrame;
path[stretched].removeMovieClip();
this[masker].removeMovieClip();
}
};
:quote: :quote: