動(dòng)畫欣賞--跟著鼠標(biāo)走
請(qǐng)把鼠標(biāo)在畫面上滑動(dòng),看看效果。
我們經(jīng)??梢钥吹揭恍└S鼠標(biāo)移動(dòng)的一些畫面,其實(shí)制作起來,是很簡單的.
跟隨鼠標(biāo)的部分,可以是文字,也可以是小動(dòng)畫,但在制作過程中,都必須得以影片剪輯的身份出現(xiàn),將它們的實(shí)例名字分別命名為:mc1-n. (mc影片剪輯名,1-n 影片剪輯序號(hào)1,2,3,4,5,6,......n)
(并非非得是使用這個(gè)名字,只要是,語句中的名字,要和實(shí)例名字一致即可).
在舞臺(tái)上,添加:
1層:背景層,
2層:影片剪輯層,只要把所有剪輯同時(shí)拉入舞臺(tái)即可,位置可不用調(diào)整。
3層:AC語句層,添加以下幀語句:
setInterval(aoyuntimelist, 1000); mc1.onEnterFrame = function() { for (n=1; n<=6; n++) { if (n == 1) { this._x += (_root._xmouse-this._x)/5+5; this._y += (_root._ymouse-this._y)/5; } else { _root["mc"+n]._x += (_root["mc"+(n-1)]._x-_root["mc"+n]._x)/5+8; _root["mc"+n]._y += (_root["mc"+(n-1)]._y-_root["mc"+n]._y)/5; } } }; var mysound:Sound = new Sound(); mysound.attachSound("sy"); var i:Number = 2; a_btn.onRelease = function() { i++%2 == 0 ? mysound.start() : mysound.stop(); i%2 == 1 ? lt_mc.play() : lt_mc.gotoAndStop(1); }; mysound.onSoundComplete = function() { lt_mc.gotoAndStop(1); }; 即完成了動(dòng)畫制作。語句中 n<=6 的數(shù)字是,動(dòng)畫中實(shí)際使用的影片剪輯數(shù)。
(本文轉(zhuǎn)自新浪博友—閑無憂的博客。原題目:《動(dòng)畫欣賞--跟隨鼠標(biāo)》 謹(jǐn)向閑無憂博友深表感謝?。?/FONT>
|