今天是:
设为首页 加入收藏 网站地图  
正在加截flash,如果长时间无显示,请下载FlashPlayer 9.0
您现在的位置: 呼网互联 >> 技术教程 >> Flash设计 >> 特效实例 >> 教程正文 用户登录 新用户注册
几种线条效果         ★★★
几种线条效果
作者:ycccc820… 文章来源:闪吧 点击数: 更新时间:2004-12-12 04:55:39
主要代码就是通过下面的进行一些调整就出来了好几种效果:
Stage.scaleMode = "noScale";
var depths = 1;
this.createEmptyMovieClip("dot", 0);
this.createEmptyMovieClip("l", -1);
with (dot) {
lineStyle(1, 0xffffff);
lineTo(1, 0);
_visible = false;
}
function drawLine() {
for (var i = depths; i<depths+4; i++) {
var d = dot.duplicateMovieClip("dot"+i, i, {_x:random(400), _y:random(400), a:0});
line = l.createEmptyMovieClip("line"+i, i);
line.clear();
line.lineStyle(1, 0xffffff);
line.moveTo(d._x, d._y);
d.onEnterFrame = function() {
this.a += 5;
this.dx = posx-this._x;
this.dy = posy-this._y;
this.dis = Math.sqrt(this.dx*this.dx+this.dy*this.dy);
this.r = Math.atan2(this.dy, this.dx);
this._x += this.dx/7-Math.sin(this.r)*this.dis/7*Math.sin(this.a*2);
this._y += this.dy/7+Math.cos(this.r)*this.dis/7*Math.sin(this.a*2);
this._parent.l["line"+this._name.substr(3)].lineStyle(1, 0xff0000, this.a);
this._parent.l["line"+this._name.substr(3)].lineTo(this._x, this._y);
if (Math.abs(this._x-posx)<1 and Math.abs(this._y-posy)<1) {
this.removeMovieClip();
}
};
}
}
this.onMouseDown = function() {
posx = _xmouse;
posy = _ymouse;
drawLine();
depths = depths>12 ? 1 : depths+4;
};

//as区已加分:)

教程录入:流云    责任编辑:流云 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    · Win XP设置技巧
    · 注册表全攻略
    · Dreamweaver 8
    · Fireworks 8
    · Flash 8
    · Photoshop CS2
    · Corel Draw
    普通教程[组图]十招学会使用Win
    普通教程[组图]Vista兼容性问题
    普通教程[组图]让低端显卡运行V
    推荐教程[图文]多图激赏:Window
    普通教程[组图]Windows Vista小
    推荐教程[图文]CSS实现星级效果
    普通教程[组图]你知道吗?有关V
    推荐教程[图文]廿五则Windows V
    推荐教程[图文]多图激赏:Window
    推荐教程[图文]CSS实现星级效果
    推荐教程[图文]廿五则Windows V
    推荐教程[图文]CorelDRAW经典教
    推荐教程[图文]蓝色人物绘制教程
    推荐教程[图文]韩式风格教程之油
    推荐教程[图文]AI进阶教程之月亮
    推荐教程XP中可以被禁用的服务对
    CSS实现星级效果总结
    书法线条“五体”说
    飞扬的韵律—用Photosh
    使用Photoshop CS2轻松
    水漫金山!教你用Photo

    多图激赏:Windows V

    CSS实现星级效果总结

    廿五则Windows Vist

    可控声音 flash 教程
    (只显示最新10条。评论内容只代表网友观点,与本站立场无关!)