首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

AS3 简略的箭头画法

2012-11-23 
AS3 简单的箭头画法var arrowLayer :Shape上箭头:_arrowLayer new Shape()_arrowLayer.graphics.lineS

AS3 简单的箭头画法
var arrowLayer :Shape;

上箭头:
_arrowLayer = new Shape();
_arrowLayer.graphics.lineStyle(2,0,1);
_arrowLayer.graphics.beginFill(0xffff00);
_arrowLayer.graphics.moveTo(-25,50);
_arrowLayer.graphics.lineTo(-25,0);
_arrowLayer.graphics.lineTo(-50,0);
_arrowLayer.graphics.lineTo(0,-50);
_arrowLayer.graphics.lineTo(50,0);
_arrowLayer.graphics.lineTo(25,0);
_arrowLayer.graphics.lineTo(25,50);
_arrowLayer.graphics.lineTo(-25,50);
_arrowLayer.graphics.endFill();

下箭头:
_arrowLayer = new Shape();
_arrowLayer.graphics.lineStyle(2,0,1);
_arrowLayer.graphics.beginFill(0xffff00);
_arrowLayer.graphics.moveTo(25,-50);
_arrowLayer.graphics.lineTo(25,0);
_arrowLayer.graphics.lineTo(50,0);
_arrowLayer.graphics.lineTo(0,50);
_arrowLayer.graphics.lineTo(-50,0);
_arrowLayer.graphics.lineTo(-25,0);
_arrowLayer.graphics.lineTo(-25,-50);
_arrowLayer.graphics.lineTo(25,-50);
_arrowLayer.graphics.endFill();
右箭头:
_arrowLayer = new Shape();
_arrowLayer.graphics.lineStyle(1,0,1);
_arrowLayer.graphics.beginFill(0xffff00);
_arrowLayer.graphics.moveTo(-50,-25);
_arrowLayer.graphics.lineTo(0,-25);
_arrowLayer.graphics.lineTo(0,-50);
_arrowLayer.graphics.lineTo(50,0);
_arrowLayer.graphics.lineTo(0,50);
_arrowLayer.graphics.lineTo(0,25);
_arrowLayer.graphics.lineTo(-50,25);
_arrowLayer.graphics.lineTo(-50,-25);
_arrowLayer.graphics.endFill();

热点排行