最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
分享鼠标跟踪效果
时间:2022-07-02 17:06:40 编辑:袖梨 来源:一聚教程网
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);
相关文章
- 未来生活:自动化农场的盈利之道 05-25
- 哆啦绘本怎样查找拼读书 05-25
- Linux环境下使用xlwt进行文件加密与数据保护 05-25
- Linux定时任务如何提升执行效率 05-25
- 如何解决Less导入CSS文件不生效的问题:配置CssImport指令或修改文件后缀 05-25
- Win11预览版26300_8493搜索排序更新:本地文件和应用优先展示 05-25