当前位置:软件学习 > Flash >>

用FLASH制作鼠标跟随效果

用FLASH制作鼠标跟随效果

鼠标跟随效果是一种FLASH效果,可以自己设定的把鼠标变成字体或是其他什么,你移动到哪里字体也会到哪里象鼠标踪迹那样,本易做图方面的讲述

QQ上的黄钻的用户是在空间商城买的,非黄钻用户是在空间添加FLASH模块的!

你可以在网上搜一些这种模块的代码,下面是制作过程,请仔细查看:

首先下载FLASH8软件。进入软件后直接新建文件---调整你想要的大小----然后按F9打开动作面板。输入下面的代码。把代码中的中文(韬董教程)改为你想要的文字(这里的文字就是鼠标跟随文字)---最后导出动画-----上传就可以了。

代码是:

function CR(obj, item)
{
} // End of the function
aiyi_text = "韬董教程";
aiyi_len = aiyi_text.length;
for (n = 0; n < aiyi_len; n++)
{
    _root.createEmptyMovieClip("aiyiT" + n, n);
    t = aiyi_text.substr(n, 1);
    with (_root["aiyiT" + n])
    {
        createTextField("aiyi_t",2,0,0,20,20);
        aiyi_t.text = t;
    } // End of with
} // end of for
startDrag (aiyiT0, true);
_root.onLoad = function ()
{
    speed = 3;
};
_root.onEnterFrame = function ()
{
    for (aiyi = 1; aiyi <= _root.aiyi_len; aiyi++)
    {
        _root["aiyiT" + aiyi]._x = _root["aiyiT" + aiyi]._x + (5 + (_root["aiyiT" + (aiyi - 1)]._x - _root["aiyiT" + aiyi]._x) / speed);
        _root["aiyiT" + aiyi]._y = _root["aiyiT" + aiyi]._y + (_root["aiyiT" + (aiyi - 1)]._y - _root["aiyiT" + aiyi]._y) / speed;
    } // end of for
};

 

爱电脑 就爱www.zzzyk.com 电脑知识网

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,