- Home
- Categorie
- Digital Marketing
- Grafica, Visual Design & UX
- slideshow con effetto dissolvenza
-
slideshow con effetto dissolvenza
Ho realizzato uno slideshow con 3 immagini che ruotano all'infinito.
Qualcuno sa dirmi come inserire un effetto dissolvenza fra una foto ed un altra?
Graziestop();
var numeroFrame:uint = 1;
var nextImage:Timer = new Timer(5000);
nextImage.addEventListener(TimerEvent.TIMER, playNext);
nextImage.start();function playNext(event:Event):void
{
nextFrame();
numeroFrame++;if (numeroFrame > 3)
{
gotoAndStop(1);
nextImage.reset();
}
}