最新下载
热门教程
- 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);
效果如下:
相关文章
- 地下城堡4骑士与破碎编年史墓穴170层攻略 10-18
- 源序空间裂隙争锋玩法介绍说明 10-18
- 新三国志曹操传蜀之阵演10-2通关攻略 10-18
- 王于兴师李牧属性技能介绍说明 10-18
- 地下城堡4骑士与破碎编年史墓穴839层攻略 10-18
- 源序空间旧日禁区玩法介绍说明 10-18