最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
鼠标跟踪效果
时间:2022-07-02 17:12:09 编辑:袖梨 来源:一聚教程网
var g = 2, st = 0, i, clearPoint = 200;
var points = new Array();
function flower() {
for (i=0; i
points.push(new Array(obj, _xmouse, _ymouse, Math.floor(Math.random()*10-5), Math.floor(Math.random()*15-12), Math.floor(70+Math.random()*30)));
}
}
function onEnterFrame() {
trace(st+","+points.length);
for (i=st; i
if (tmp == null) {
if (i == st) {
st++;
}
continue;
}
if (tmp[5]<0) {
tmp[0].removeMovieClip();
points[i] = null;
} else {
tmp[0]._alpha = tmp[5];
tmp[0]._x = tmp[1];
tmp[0]._y = tmp[2];
tmp[1] += tmp[3];
tmp[2] += tmp[4];
tmp[4] += g;
tmp[5] -= 5;
}
}
if (st>clearPoint) {
points.splice(0, st);
st = 0;
}
}
var obj = new Object();
obj.onMouseMove = function() {
flower();
};
Mouse.addListener(obj);
效果如下:
相关文章
- 开放空间宁蒙有什么技能 09-15
- 小鸡舰队出击天空首领活动怎么玩 09-15
- 魔法工艺套装如何解锁使用 09-15
- 三国群英传策定九州资源地有什么打法技巧 09-15
- 下一站江湖2马夫人任务怎么完成 09-15
- 小鸡舰队出击终焉灵王队伍如何搭配 09-15