Use Flash to make the album of the tutorial already a lot of! Here is not to give everybody wordy! Just play with your imagination and believe in yourself! So cool rotating Image album visual effects will appear.
Simple to tell you about the production steps
1, first modify the document properties, ready to use the animation pictures and thumbnails.
Figure 1
2, then make a film clip, first make a background.
Figure 2
3, the film clip's layer effect is shown below. Thumbs is to store thumbnails, mask is to draw a positive circle, as a masking use, images is the original image, BG is placed above that background.
Figure 3
4, the attention to the picture into film clips. The other pictures are similar, here to cut a picture for everyone.
Figure 4
5, in order to put the picture thumbnail placement, we use a technology. So the position of the thumbnail is solved!
Figure 5
6, each small thumbnail of the production method is very simple, give you screenshots. Cover your thumbnail with a mask!
Figure 6
7, the last to add a load loading, the first frame action is stop ();
Figure 7
The action of the second frame is:
Stop ();
positions = [];
Imagetotal = 8;
Pausegallery = false;
var Current:movieclip;
for (var i = 0; i
var t = gallery.thumbholder["thumb" +i];
T.image = "image" +i;
t.onpress = function () {
Removemovieclip (current);
Current = Gallery.imageHolder.attachMovie (This.image, This.image, i);
Pausegallery = false;
};
T.onrollover = function () {
Pausegallery = true;
};
T.onrollout = function () {
Pausegallery = false;
};
}
Current = Gallery.imageHolder.attachMovie ("Image0", "Image0", 1000);
This.onenterframe = function () {
if (!pausegallery) {
for (var j = 0; j
gallery.thumbholder["thumb" +j]._rotation-= 0.5;
}
Gallery.thumbholder._rotation + 0.5;
}
};
Finally, you can test! This explains the overall production process of this animation!