永发信息网

怎样在照片上 出现鼠标跟随效果?

答案:2  悬赏:60  手机版
解决时间 2021-07-30 11:26
  • 提问者网友:焚苦与心
  • 2021-07-30 02:14
怎样在照片上 出现鼠标跟随效果?
最佳答案
  • 五星知识达人网友:归鹤鸣
  • 2021-07-30 03:27

那是flash动画


要出现跟随效果,得用动作脚本actionscript,呵呵


学学flash吧


var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0x0000FF;
i_text = "想要跟随的文字 ";
i_len = i_text.length;
n = 0;
while (n<i_len) {
_root.createEmptyMovieClip("iT"+n, n);
t = i_text.substr(n, 1);
with (_root["iT"+n]) {
createTextField("i_t", 2, 0, 0, 20, 20);
i_t.text = t;
i_t.setTextFormat(my_fmt);
//trace(aiyi_t.text)
}
n++;
}
startDrag(iT0, true);
_root.onLoad = function() {
speed = 3;
};
_root.onEnterFrame = function() {
i = 1;
while (i<=_root.i_len) {
_root["iT"+i]._x += 5+(_root["iT"+(i-1)]._x-_root["iT"+i]._x)/speed;
_root["iT"+i]._y += (_root["iT"+(i-1)]._y-_root["iT"+i]._y)/speed;
i++;
}
};
_root.Mouse.hide();

全部回答
  • 1楼网友:轮獄道
  • 2021-07-30 04:54

控制面板---鼠标---鼠标属性---指针选项---显示指针踪迹(打上钩)

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯