是一种FLASH效果 可以自己设定的 把鼠标变成字体或是其他什么 你移动到哪里字体也会到哪里象鼠标踪迹那样 你说的是这个么黄钻的用户是在空间商城买的非黄钻用户是在空间添加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 };