亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? vml.js

?? js基本操作
?? JS
?? 第 1 頁 / 共 3 頁
字號:
					if(parent.childNodes[i] == this.rawNode){						before = parent.childNodes[i+1];						break;					}				}			}			parent.removeChild(this.rawNode);		}		this.rawNode.arcsize = r;		if(parent){			if(before){				parent.insertBefore(this.rawNode, before);			}else{				parent.appendChild(this.rawNode);			}		}		return this.setTransform(this.matrix);	// self	}});dojo.gfx.Rect.nodeType = "roundrect"; // use a roundrect so the stroke join type is respecteddojo.declare("dojo.gfx.Ellipse", dojo.gfx.shape.Ellipse, {	// summary: an ellipse shape (VML)	attachShape: function(rawNode){		// summary: builds an ellipse shape from a Node.		// rawNode: Node: an VML node		var style = this.rawNode.style;		var rx = parseInt(style.width ) / 2;		var ry = parseInt(style.height) / 2;		var o = dojo.gfx.makeParameters(dojo.gfx.defaultEllipse, {			cx: parseInt(style.left) + rx,			cy: parseInt(style.top ) + ry,			rx: rx,			ry: ry		});		return o;	// dojo.gfx.shape.Ellipse	},	setShape: function(newShape){		// summary: sets an ellipse shape object (VML)		// newShape: Object: an ellipse shape object		var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);		this.bbox = null;		var style = this.rawNode.style;		style.left   = (shape.cx - shape.rx).toFixed();		style.top    = (shape.cy - shape.ry).toFixed();		style.width  = (shape.rx * 2).toFixed();		style.height = (shape.ry * 2).toFixed();		return this.setTransform(this.matrix);	// self	}});dojo.gfx.Ellipse.nodeType = "oval";dojo.declare("dojo.gfx.Circle", dojo.gfx.shape.Circle, {	// summary: a circle shape (VML)	attachShape: function(rawNode){		// summary: builds a circle shape from a Node.		// rawNode: Node: an VML node		var style = this.rawNode.style;		var r = parseInt(style.width) / 2;		var o = dojo.gfx.makeParameters(dojo.gfx.defaultCircle, {			cx: parseInt(style.left) + r,			cy: parseInt(style.top)  + r,			r:  r		});		return o;	// dojo.gfx.shape.Circle	},	setShape: function(newShape){		// summary: sets a circle shape object (VML)		// newShape: Object: a circle shape object		var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);		this.bbox = null;		var style = this.rawNode.style;		style.left   = (shape.cx - shape.r).toFixed();		style.top    = (shape.cy - shape.r).toFixed();		style.width  = (shape.r * 2).toFixed();		style.height = (shape.r * 2).toFixed();		return this;	// self	}});dojo.gfx.Circle.nodeType = "oval";dojo.declare("dojo.gfx.Line", dojo.gfx.shape.Line,	function(rawNode){		if(rawNode) rawNode.setAttribute("dojoGfxType", "line");	}, {	// summary: a line shape (VML)	attachShape: function(rawNode){		// summary: builds a line shape from a Node.		// rawNode: Node: an VML node		var p = rawNode.path.v.match(dojo.gfx.pathRegExp);		var shape = {};		do{			if(p.length < 7 || p[0] != "m" || p[3] != "l" || p[6] != "e") break;			shape.x1 = parseInt(p[1]);			shape.y1 = parseInt(p[2]);			shape.x2 = parseInt(p[4]);			shape.y2 = parseInt(p[5]);		}while(false);		return dojo.gfx.makeParameters(dojo.gfx.defaultLine, shape);	// dojo.gfx.shape.Line	},	setShape: function(newShape){		// summary: sets a line shape object (VML)		// newShape: Object: a line shape object		var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);		this.bbox = null;		this.rawNode.path.v = "m" + shape.x1.toFixed() + " " + shape.y1.toFixed() +			"l" + shape.x2.toFixed() + " " + shape.y2.toFixed() + "e";		return this.setTransform(this.matrix);	// self	}});dojo.gfx.Line.nodeType = "shape";dojo.declare("dojo.gfx.Polyline", dojo.gfx.shape.Polyline,	function(rawNode){		if(rawNode) rawNode.setAttribute("dojoGfxType", "polyline");	}, {	// summary: a polyline/polygon shape (VML)		attachShape: function(rawNode){		// summary: builds a polyline/polygon shape from a Node.		// rawNode: Node: an VML node		var shape = dojo.lang.shallowCopy(dojo.gfx.defaultPolyline, true);		var p = rawNode.path.v.match(dojo.gfx.pathRegExp);		do{			if(p.length < 3 || p[0] != "m") break;			var x = parseInt(p[0]);			var y = parseInt(p[1]);			if(isNaN(x) || isNaN(y)) break;			shape.points.push({x: x, y: y});			if(p.length < 6 || p[3] != "l") break;			for(var i = 4; i < p.length; i += 2){				x = parseInt(p[i]);				y = parseInt(p[i + 1]);				if(isNaN(x) || isNaN(y)) break;				shape.points.push({x: x, y: y});			}		}while(false);		return shape;	// dojo.gfx.shape.Polyline	},	setShape: function(points, closed){		// summary: sets a polyline/polygon shape object (SVG)		// points: Object: a polyline/polygon shape object		// closed: Boolean?: if true, close the polyline explicitely		if(points && points instanceof Array){			// branch			// points: Array: an array of points			this.shape = dojo.gfx.makeParameters(this.shape, { points: points });			if(closed && this.shape.points.length) this.shape.points.push(this.shape.points[0]);		}else{			this.shape = dojo.gfx.makeParameters(this.shape, points);		}		this.bbox = null;		var attr = [];		var p = this.shape.points;		if(p.length > 0){			attr.push("m");			attr.push(p[0].x.toFixed());			attr.push(p[0].y.toFixed());			if(p.length > 1){				attr.push("l");				for(var i = 1; i < p.length; ++i){					attr.push(p[i].x.toFixed());					attr.push(p[i].y.toFixed());				}			}		}		attr.push("e");		this.rawNode.path.v = attr.join(" ");		return this.setTransform(this.matrix);	// self	}});dojo.gfx.Polyline.nodeType = "shape";dojo.declare("dojo.gfx.Image", dojo.gfx.shape.Image, {	// summary: an image (VML)		getEventSource: function() {		// summary: returns a Node, which is used as 		//	a source of events for this shape		return this.rawNode ? this.rawNode.firstChild : null;	// Node	},	attachShape: function(rawNode){		// summary: builds an image shape from a Node.		// rawNode: Node: an VML node		var shape = dojo.lang.shallowCopy(dojo.gfx.defaultImage, true);		shape.src = rawNode.firstChild.src;		return shape;	// dojo.gfx.shape.Image	},	setShape: function(newShape){		// summary: sets an image shape object (VML)		// newShape: Object: an image shape object		var shape = this.shape = dojo.gfx.makeParameters(this.shape, newShape);		this.bbox = null;		var firstChild = this.rawNode.firstChild;        firstChild.src = shape.src;        if(shape.width || shape.height){			firstChild.style.width  = shape.width;			firstChild.style.height = shape.height;        }		return this.setTransform(this.matrix);	// self	},	setStroke: function(){		// summary: ignore setting a stroke style		return this;	// self	},	setFill: function(){		// summary: ignore setting a fill style		return this;	// self	},	attachStroke: function(rawNode){		// summary: ignore attaching a stroke style		return null;	},	attachFill: function(rawNode){		// summary: ignore attaching a fill style		return null;	},	attachTransform: function(rawNode) {		// summary: deduces a transformation matrix from a Node.		// rawNode: Node: an VML node		var matrix = {};		if(rawNode){			var m = rawNode.filters["DXImageTransform.Microsoft.Matrix"];			matrix.xx = m.M11;			matrix.xy = m.M12;			matrix.yx = m.M21;			matrix.yy = m.M22;			matrix.dx = m.Dx;			matrix.dy = m.Dy;		}		return dojo.gfx.matrix.normalize(matrix);	// dojo.gfx.matrix.Matrix	},	_applyTransform: function() {		var matrix = this._getRealMatrix();		if(!matrix) return this;		with(this.rawNode.filters["DXImageTransform.Microsoft.Matrix"]){			M11 = matrix.xx;			M12 = matrix.xy;			M21 = matrix.yx;			M22 = matrix.yy;			Dx  = matrix.dx;			Dy  = matrix.dy;		}		return this;	}});dojo.gfx.Image.nodeType = "image";dojo.gfx.path._calcArc = function(alpha){	var cosa  = Math.cos(alpha);	var sina  = Math.sin(alpha);	// return a start point, 1st and 2nd control points, and an end point	var p2 = {x: cosa + (4 / 3) * (1 - cosa), y: sina - (4 / 3) * cosa * (1 - cosa) / sina};	return {		s:  {x: cosa, y: sina},		c1: p2,		c2: {x: p2.x, y: -p2.y},		e:  {x: cosa, y: -sina}	};};dojo.declare("dojo.gfx.Path", dojo.gfx.path.Path,	function(rawNode){		if(rawNode) rawNode.setAttribute("dojoGfxType", "path");		this.vmlPath = "";		this.lastControl = {};	}, {	// summary: a path shape (VML)	_updateWithSegment: function(segment){		// summary: updates the bounding box of path with new segment		// segment: Object: a segment		var last = dojo.lang.shallowCopy(this.last);		dojo.gfx.Path.superclass._updateWithSegment.apply(this, arguments);		// add a VML path segment		var path = this[this.renderers[segment.action]](segment, last);		if(typeof(this.vmlPath) == "string"){			this.vmlPath += path.join("");		}else{			this.vmlPath = this.vmlPath.concat(path);		}		if(typeof(this.vmlPath) == "string"){			this.rawNode.path.v = this.vmlPath + " e";		}	},	attachShape: function(rawNode){		// summary: builds a path shape from a Node.		// rawNode: Node: an VML node		var shape = dojo.lang.shallowCopy(dojo.gfx.defaultPath, true);		var p = rawNode.path.v.match(dojo.gfx.pathRegExp);		var t = [], skip = false;		for(var i = 0; i < p.length; ++p){			var s = p[i];			if(s in this._pathVmlToSvgMap) {				skip = false;				t.push(this._pathVmlToSvgMap[s]);			} else if(!skip){				var n = parseInt(s);				if(isNaN(n)){					skip = true;				}else{					t.push(n);				}			}		}		if(t.length) shape.path = t.join(" ");		return shape;	// dojo.gfx.path.Path	},	setShape: function(newShape){		// summary: forms a path using a shape (VML)		// newShape: Object: an VML path string or a path object (see dojo.gfx.defaultPath)		this.vmlPath = [];		this.lastControl = {};		dojo.gfx.Path.superclass.setShape.apply(this, arguments);		this.vmlPath = this.vmlPath.join("");		this.rawNode.path.v = this.vmlPath + " e";		return this;	},	_pathVmlToSvgMap: {m: "M", l: "L", t: "m", r: "l", c: "C", v: "c", qb: "Q", x: "z", e: ""},	// VML-specific segment renderers	renderers: {		M: "_moveToA", m: "_moveToR", 		L: "_lineToA", l: "_lineToR", 		H: "_hLineToA", h: "_hLineToR", 		V: "_vLineToA", v: "_vLineToR", 		C: "_curveToA", c: "_curveToR", 		S: "_smoothCurveToA", s: "_smoothCurveToR", 		Q: "_qCurveToA", q: "_qCurveToR", 		T: "_qSmoothCurveToA", t: "_qSmoothCurveToR", 		A: "_arcTo", a: "_arcTo", 		Z: "_closePath", z: "_closePath"	},	_addArgs: function(path, args, from, upto){		if(typeof(upto) == "undefined"){			upto = args.length;		}		if(typeof(from) == "undefined"){			from = 0;		}		for(var i = from; i < upto; ++i){			path.push(" ");			path.push(args[i].toFixed());		}	},	_addArgsAdjusted: function(path, last, args, from, upto){		if(typeof(upto) == "undefined"){			upto = args.length;		}		if(typeof(from) == "undefined"){			from = 0;		}		for(var i = from; i < upto; i += 2){			path.push(" ");			path.push((last.x + args[i]).toFixed());			path.push(" ");			path.push((last.y + args[i + 1]).toFixed());		}	},	_moveToA: function(segment){		var p = [" m"];		var n = segment.args;		var l = n.length;		if(l == 2){			this._addArgs(p, n);		}else{			this._addArgs(p, n, 0, 2);			p.push(" l");			this._addArgs(p, n, 2);		}		this.lastControl = {};		return p;	},	_moveToR: function(segment, last){		var p = ["x" in last ? " t" : " m"];		var n = segment.args;		var l = n.length;		if(l == 2){			this._addArgs(p, n);		}else{			this._addArgs(p, n, 0, 2);			p.push(" r");			this._addArgs(p, n, 2);		}		this.lastControl = {};		return p;	},	_lineToA: function(segment){		var p = [" l"];		this._addArgs(p, segment.args);		this.lastControl = {};		return p;	},	_lineToR: function(segment){		var p = [" r"];		this._addArgs(p, segment.args);		this.lastControl = {};		return p;	},	_hLineToA: function(segment, last){		var p = [" l"];		var n = segment.args;		var l = n.length;		var y = " " + last.y.toFixed();		for(var i = 0; i < l; ++i){			p.push(" ");			p.push(n[i].toFixed());			p.push(y);		}		this.lastControl = {};		return p;	},	_hLineToR: function(segment){		var p = [" r"];		var n = segment.args;		var l = n.length;		for(var i = 0; i < l; ++i){			p.push(" ");			p.push(n[i].toFixed());			p.push(" 0");		}		this.lastControl = {};		return p;	},	_vLineToA: function(segment, last){		var p = [" l"];		var n = segment.args;		var l = n.length;		var x = " " + last.x.toFixed();		for(var i = 0; i < l; ++i){			p.push(x);			p.push(" ");			p.push(n[i].toFixed());		}		this.lastControl = {};		return p;	},	_vLineToR: function(segment){

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲猫色日本管| 成人午夜激情影院| 日韩电影免费在线看| 亚洲人一二三区| 亚洲欧洲日产国码二区| 亚洲三级理论片| 亚洲欧美日韩国产一区二区三区 | 日韩三级视频中文字幕| 91精品国产综合久久精品性色| 欧美精品三级在线观看| 欧美年轻男男videosbes| 制服丝袜一区二区三区| 欧美高清激情brazzers| 欧美成人aa大片| 国产午夜精品一区二区| 中文字幕一区二区三区乱码在线 | 久99久精品视频免费观看| 精品一二三四区| 国产精品18久久久久久久久| 国产河南妇女毛片精品久久久 | 欧美日韩一本到| 日韩视频在线一区二区| 久久麻豆一区二区| 亚洲欧洲另类国产综合| 亚洲午夜精品网| 久久国产精品第一页| 国产成人亚洲综合a∨婷婷| 99久久99久久精品免费观看| 欧美日韩国产首页| 欧美精品一区二区久久婷婷| 亚洲国产精品高清| 亚洲一区二区三区在线| 美日韩一区二区| 不卡视频在线观看| 欧美日韩视频第一区| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 美女精品自拍一二三四| 国产成人日日夜夜| 欧美性欧美巨大黑白大战| 欧美一区二区三区视频免费| 欧美国产国产综合| 午夜不卡av在线| 高清日韩电视剧大全免费| 欧美色图激情小说| 国产视频亚洲色图| 无码av中文一区二区三区桃花岛| 精品一区二区免费看| 色av综合在线| 久久久www成人免费毛片麻豆| 一区二区三区蜜桃| 国产黑丝在线一区二区三区| 欧美图片一区二区三区| 久久久99精品免费观看不卡| 亚洲成人你懂的| 成人av综合一区| 日韩精品中午字幕| 亚洲一区免费在线观看| 床上的激情91.| 日韩一级大片在线| 一区二区在线观看av| 国产尤物一区二区| 欧美精品 国产精品| 亚洲免费观看在线观看| 激情五月播播久久久精品| 欧洲精品一区二区三区在线观看| 久久久777精品电影网影网| 日韩—二三区免费观看av| 91免费看视频| 国产三级一区二区| 卡一卡二国产精品| 欧美午夜精品一区二区三区| 中文字幕av一区 二区| 久久66热偷产精品| 在线播放日韩导航| 一区二区三区在线视频观看58| 国产99久久久国产精品潘金网站| 欧美顶级少妇做爰| 亚洲午夜影视影院在线观看| 成人av片在线观看| 久久久精品免费观看| 美女久久久精品| 91.com在线观看| 亚洲一区二区在线播放相泽 | 久久久久久久久久电影| 日韩国产欧美在线视频| 欧美性淫爽ww久久久久无| 亚洲三级在线播放| 97精品视频在线观看自产线路二| 国产区在线观看成人精品| 激情综合网最新| 日韩精品专区在线影院重磅| 日本aⅴ免费视频一区二区三区 | 亚洲另类在线制服丝袜| eeuss影院一区二区三区| 国产日韩欧美在线一区| 国产在线精品视频| 欧美精品一区二区久久久| 久久99精品一区二区三区三区| 日韩一区二区三区电影在线观看 | 亚洲三级电影网站| 色妞www精品视频| 亚洲免费av网站| 在线亚洲高清视频| 亚洲综合一区二区三区| 欧美午夜一区二区三区免费大片| 一区二区三区在线观看视频| 色婷婷综合久久久久中文一区二区| 综合久久给合久久狠狠狠97色 | 亚洲欧洲精品一区二区精品久久久 | 亚洲欧洲国产专区| 色综合久久综合| 亚洲精品免费在线| 欧美视频精品在线观看| 亚洲第一福利视频在线| 欧美日韩国产色站一区二区三区| 亚洲国产aⅴ天堂久久| 69堂成人精品免费视频| 激情偷乱视频一区二区三区| 久久久久综合网| 成人高清伦理免费影院在线观看| 中文字幕欧美一区| 欧美色手机在线观看| 日本sm残虐另类| 国产丝袜在线精品| 色婷婷久久一区二区三区麻豆| 一区二区三区中文在线| 欧美精品电影在线播放| 激情亚洲综合在线| 国产精品不卡视频| 欧美性感一区二区三区| 免费看欧美美女黄的网站| 久久亚洲免费视频| 91一区二区三区在线播放| 午夜不卡在线视频| 久久精品一级爱片| 在线日韩国产精品| 蜜臀久久99精品久久久久宅男| 久久久久久毛片| 在线免费不卡视频| 黄色精品一二区| 亚洲美腿欧美偷拍| 欧美一区二区三区影视| 成人丝袜视频网| 亚洲成人久久影院| 久久精品免费在线观看| 欧美性受xxxx黑人xyx性爽| 极品美女销魂一区二区三区 | 三级在线观看一区二区| 国产亚洲欧美日韩俺去了| 欧洲av一区二区嗯嗯嗯啊| 韩国在线一区二区| 亚洲已满18点击进入久久| 久久先锋资源网| 欧美在线三级电影| 国产传媒久久文化传媒| 香蕉久久夜色精品国产使用方法| 国产欧美中文在线| 欧美日韩国产不卡| a在线欧美一区| 久久精品国产久精国产爱| 一区二区三区加勒比av| 国产午夜精品一区二区| 欧美肥大bbwbbw高潮| 成人av高清在线| 久草这里只有精品视频| 亚洲综合激情另类小说区| 日本一区免费视频| 日韩一区二区精品在线观看| 91社区在线播放| 欧美日韩国产影片| 91玉足脚交白嫩脚丫在线播放| 国产毛片精品国产一区二区三区| 亚洲成av人片一区二区梦乃| 亚洲丝袜另类动漫二区| 久久蜜桃一区二区| 91麻豆精品久久久久蜜臀 | 玉足女爽爽91| 亚洲国产高清在线观看视频| 日韩欧美国产一区二区在线播放| 在线观看成人小视频| 成人h动漫精品| 国产精品456| 国产最新精品免费| 日本少妇一区二区| 亚洲va中文字幕| 亚洲精品成人在线| 亚洲视频在线一区| 国产精品久久久久久久久果冻传媒 | 国产精品久久久久永久免费观看| 99久久精品国产麻豆演员表| 亚洲乱码精品一二三四区日韩在线 | 精品国产第一区二区三区观看体验 | 在线观看精品一区| 91免费视频网址| 成人av在线一区二区三区| 国产精品自在在线| 国产乱码精品一区二区三区av| 精品在线播放午夜| 六月丁香综合在线视频| 日韩av成人高清|