Flash makes cool rotating image album visual effects

Source: Internet
Author: User

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!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.