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

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

?? svg.js

?? OA系統實現以下功能: a、個人辦公,我的辦公桌 b、公文管理 c、工作流程 d、組織管理 e. 權限管理
?? JS
?? 第 1 頁 / 共 2 頁
字號:
	var strokeStyle = dojo.lang.shallowCopy(dojo.gfx.defaultStroke, true);	var color = new dojo.gfx.color.Color(stroke);	if (color) {		strokeStyle.color = color;		strokeStyle.color.a = rawNode.getAttribute("stroke-opacity");		strokeStyle.width = rawNode.getAttribute("stroke-width");		strokeStyle.cap = rawNode.getAttribute("stroke-linecap");		strokeStyle.join = rawNode.getAttribute("stroke-linejoin");		if (strokeStyle.join == "miter") {			strokeStyle.join = rawNode.getAttribute("stroke-miterlimit");		}	}	return strokeStyle;}, attachTransform:function (rawNode) {	var matrix = null;	if (rawNode) {		matrix = rawNode.getAttribute("transform");		if (matrix.match(/^matrix\(.+\)$/)) {			var t = matrix.slice(7, -1).split(",");			matrix = dojo.gfx.matrix.normalize({xx:parseFloat(t[0]), xy:parseFloat(t[2]), yx:parseFloat(t[1]), yy:parseFloat(t[3]), dx:parseFloat(t[4]), dy:parseFloat(t[5])});		}	}	return matrix;}, attachShape:function (rawNode) {	var shape = null;	if (rawNode) {		shape = dojo.lang.shallowCopy(this.shape, true);		for (var i in shape) {			shape[i] = rawNode.getAttribute(i);		}	}	return shape;}, attach:function (rawNode) {	if (rawNode) {		this.rawNode = rawNode;		this.fillStyle = this.attachFill(rawNode);		this.strokeStyle = this.attachStroke(rawNode);		this.matrix = this.attachTransform(rawNode);		this.shape = this.attachShape(rawNode);	}}});dojo.declare("dojo.gfx.Group", dojo.gfx.Shape, {setRawNode:function (rawNode) {	this.rawNode = rawNode;}});dojo.gfx.Group.nodeType = "g";dojo.declare("dojo.gfx.Rect", dojo.gfx.shape.Rect, {attachShape:function (rawNode) {	var shape = null;	if (rawNode) {		shape = dojo.gfx.Rect.superclass.attachShape.apply(this, arguments);		shape.r = Math.min(rawNode.getAttribute("rx"), rawNode.getAttribute("ry"));	}	return shape;}, setShape:function (newShape) {	this.shape = dojo.gfx.makeParameters(this.shape, newShape);	this.bbox = null;	for (var i in this.shape) {		if (i != "type" && i != "r") {			this.rawNode.setAttribute(i, this.shape[i]);		}	}	this.rawNode.setAttribute("rx", this.shape.r);	this.rawNode.setAttribute("ry", this.shape.r);	return this;}});dojo.gfx.Rect.nodeType = "rect";dojo.gfx.Ellipse = dojo.gfx.shape.Ellipse;dojo.gfx.Ellipse.nodeType = "ellipse";dojo.gfx.Circle = dojo.gfx.shape.Circle;dojo.gfx.Circle.nodeType = "circle";dojo.gfx.Line = dojo.gfx.shape.Line;dojo.gfx.Line.nodeType = "line";dojo.declare("dojo.gfx.Polyline", dojo.gfx.shape.Polyline, {setShape:function (points) {	if (points && points instanceof Array) {		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.box = null;	var attr = [];	var p = this.shape.points;	for (var i = 0; i < p.length; ++i) {		attr.push(p[i].x.toFixed(8));		attr.push(p[i].y.toFixed(8));	}	this.rawNode.setAttribute("points", attr.join(" "));	return this;}});dojo.gfx.Polyline.nodeType = "polyline";dojo.declare("dojo.gfx.Image", dojo.gfx.shape.Image, {setShape:function (newShape) {	this.shape = dojo.gfx.makeParameters(this.shape, newShape);	this.bbox = null;	var rawNode = this.rawNode;	for (var i in this.shape) {		if (i != "type" && i != "src") {			rawNode.setAttribute(i, this.shape[i]);		}	}	rawNode.setAttributeNS(dojo.svg.xmlns.xlink, "href", this.shape.src);	return this;}, setStroke:function () {	return this;}, setFill:function () {	return this;}, attachStroke:function (rawNode) {	return null;}, attachFill:function (rawNode) {	return null;}});dojo.gfx.Image.nodeType = "image";dojo.declare("dojo.gfx.Path", dojo.gfx.path.Path, {_updateWithSegment:function (segment) {	dojo.gfx.Path.superclass._updateWithSegment.apply(this, arguments);	if (typeof (this.shape.path) == "string") {		this.rawNode.setAttribute("d", this.shape.path);	}}, setShape:function (newShape) {	dojo.gfx.Path.superclass.setShape.apply(this, arguments);	this.rawNode.setAttribute("d", this.shape.path);	return this;}});dojo.gfx.Path.nodeType = "path";dojo.gfx._creators = {createPath:function (path) {	return this.createObject(dojo.gfx.Path, path);}, createRect:function (rect) {	return this.createObject(dojo.gfx.Rect, rect);}, createCircle:function (circle) {	return this.createObject(dojo.gfx.Circle, circle);}, createEllipse:function (ellipse) {	return this.createObject(dojo.gfx.Ellipse, ellipse);}, createLine:function (line) {	return this.createObject(dojo.gfx.Line, line);}, createPolyline:function (points) {	return this.createObject(dojo.gfx.Polyline, points);}, createImage:function (image) {	return this.createObject(dojo.gfx.Image, image);}, createGroup:function () {	return this.createObject(dojo.gfx.Group);}, createObject:function (shapeType, rawShape) {	if (!this.rawNode) {		return null;	}	var shape = new shapeType();	var node = document.createElementNS(dojo.svg.xmlns.svg, shapeType.nodeType);	shape.setRawNode(node);	this.rawNode.appendChild(node);	shape.setShape(rawShape);	this.add(shape);	return shape;}, add:function (shape) {	var oldParent = shape.getParent();	if (oldParent) {		oldParent.remove(shape, true);	}	shape._setParent(this, null);	this.rawNode.appendChild(shape.rawNode);	return this;}, remove:function (shape, silently) {	if (this.rawNode == shape.rawNode.parentNode) {		this.rawNode.removeChild(shape.rawNode);	}	shape._setParent(null, null);	return this;}};dojo.gfx.attachNode = function (node) {	if (!node) {		return null;	}	var s = null;	switch (node.tagName.toLowerCase()) {	  case dojo.gfx.Rect.nodeType:		s = new dojo.gfx.Rect();		break;	  case dojo.gfx.Ellipse.nodeType:		s = new dojo.gfx.Ellipse();		break;	  case dojo.gfx.Polyline.nodeType:		s = new dojo.gfx.Polyline();		break;	  case dojo.gfx.Path.nodeType:		s = new dojo.gfx.Path();		break;	  case dojo.gfx.Circle.nodeType:		s = new dojo.gfx.Circle();		break;	  case dojo.gfx.Line.nodeType:		s = new dojo.gfx.Line();		break;	  case dojo.gfx.Image.nodeType:		s = new dojo.gfx.Image();		break;	  default:		dojo.debug("FATAL ERROR! tagName = " + node.tagName);	}	s.attach(node);	return s;};dojo.lang.extend(dojo.gfx.Surface, {setDimensions:function (width, height) {	if (!this.rawNode) {		return this;	}	this.rawNode.setAttribute("width", width);	this.rawNode.setAttribute("height", height);	return this;}, getDimensions:function () {	return this.rawNode ? {width:this.rawNode.getAttribute("width"), height:this.rawNode.getAttribute("height")} : null;}});dojo.gfx.createSurface = function (parentNode, width, height) {	var s = new dojo.gfx.Surface();	s.rawNode = document.createElementNS(dojo.svg.xmlns.svg, "svg");	s.rawNode.setAttribute("width", width);	s.rawNode.setAttribute("height", height);	var defs = new dojo.gfx.svg.Defines();	var node = document.createElementNS(dojo.svg.xmlns.svg, dojo.gfx.svg.Defines.nodeType);	defs.setRawNode(node);	s.rawNode.appendChild(node);	dojo.byId(parentNode).appendChild(s.rawNode);	return s;};dojo.gfx.attachSurface = function (node) {	var s = new dojo.gfx.Surface();	s.rawNode = node;	return s;};dojo.lang.extend(dojo.gfx.Group, dojo.gfx._creators);dojo.lang.extend(dojo.gfx.Surface, dojo.gfx._creators);delete dojo.gfx._creators;dojo.gfx.svg.Defines = function () {	this.rawNode = null;};dojo.lang.extend(dojo.gfx.svg.Defines, {setRawNode:function (rawNode) {	this.rawNode = rawNode;}});dojo.gfx.svg.Defines.nodeType = "defs";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃精品在线观看| 亚洲成av人片一区二区| 日韩一级精品视频在线观看| 色偷偷一区二区三区| 成人丝袜18视频在线观看| 国产乱码精品一区二区三区忘忧草 | 激情综合亚洲精品| 免费的成人av| 精品无人区卡一卡二卡三乱码免费卡| 首页国产欧美久久| 久久精品国产精品亚洲精品| 美女视频黄免费的久久| 精品一区二区综合| 成人精品国产福利| 欧美自拍丝袜亚洲| 欧美一区三区二区| 国产人成亚洲第一网站在线播放| 国产欧美综合色| 亚洲免费在线视频| 午夜精品福利久久久| 久久精品国产久精国产爱| 国产精品中文字幕欧美| 色老汉av一区二区三区| 欧美人伦禁忌dvd放荡欲情| 日韩精品中文字幕一区二区三区| 国产日韩精品一区二区三区| 亚洲精品v日韩精品| 日韩avvvv在线播放| 高清国产午夜精品久久久久久| 91欧美一区二区| 欧美日韩第一区日日骚| 精品对白一区国产伦| 亚洲欧洲美洲综合色网| 午夜精品久久一牛影视| 极品美女销魂一区二区三区| 97国产精品videossex| 亚洲精品国产无天堂网2021| 亚洲高清不卡在线| 亚洲国产精品一区二区www| 丝瓜av网站精品一区二区| 国产精品1024| 欧美怡红院视频| 国产亚洲欧美日韩日本| 亚洲日本乱码在线观看| 久久国产精品99久久久久久老狼 | 日韩欧美国产一二三区| 日本一区二区三区四区| 日韩在线一区二区三区| 国产一区视频网站| 欧美军同video69gay| 国产欧美日韩久久| 日韩av电影天堂| 欧美在线999| 中文字幕国产一区二区| 久久精品国产一区二区| 欧美在线你懂得| 中文字幕av一区二区三区免费看 | 久久新电视剧免费观看| 偷拍一区二区三区| 在线免费观看日韩欧美| 国产亚洲欧美色| 国模无码大尺度一区二区三区| 欧美亚洲国产怡红院影院| 国产精品午夜免费| 国产91色综合久久免费分享| 欧美一级片在线看| 日本欧美一区二区在线观看| 欧美无人高清视频在线观看| 亚洲视频一区二区免费在线观看| 成人av资源在线观看| 国产欧美精品一区| 国产成人av一区二区三区在线| 欧美日韩成人一区| 亚洲欧美综合另类在线卡通| 国产成人欧美日韩在线电影| 日韩丝袜美女视频| 蜜臀91精品一区二区三区| 欧美猛男男办公室激情| 亚洲va国产va欧美va观看| 欧美网站大全在线观看| 亚洲国产精品自拍| 日本久久一区二区| 日韩精品一二三四| 日韩精品综合一本久道在线视频| 久久精品国产网站| 国产午夜精品福利| 成人h动漫精品一区二| 日本一区二区视频在线观看| 成人精品在线视频观看| 亚洲日穴在线视频| 9191久久久久久久久久久| 蜜桃av噜噜一区| wwwwxxxxx欧美| 成人av网在线| 亚洲一级片在线观看| 69堂精品视频| 国产乱国产乱300精品| 成人免费在线视频观看| 在线中文字幕一区二区| 日本 国产 欧美色综合| 久久先锋资源网| 北条麻妃国产九九精品视频| 一区二区三区日韩欧美| 欧美一区二区女人| 国产成人精品免费| 亚洲裸体在线观看| 91精品国产91久久久久久最新毛片 | 日韩欧美电影在线| 国产福利一区在线观看| 亚洲精品视频在线观看免费| 5月丁香婷婷综合| 丁香网亚洲国际| 亚洲一二三区视频在线观看| 精品精品国产高清a毛片牛牛 | 综合精品久久久| 欧美一区二区三区免费观看视频| 国产九色sp调教91| 夜夜嗨av一区二区三区中文字幕| 日韩午夜小视频| 91视频你懂的| 国产精品亚洲午夜一区二区三区| 亚洲韩国精品一区| 国产欧美一区二区三区鸳鸯浴| 欧洲精品在线观看| 粉嫩aⅴ一区二区三区四区五区| 亚洲综合一区二区| 国产精品第一页第二页第三页| 日韩欧美成人一区二区| 欧美亚洲自拍偷拍| 99久久综合精品| 国产一区二区视频在线| 日本欧美加勒比视频| 亚洲免费色视频| 中文子幕无线码一区tr| 日韩精品专区在线| 欧美一区二区美女| 欧美高清精品3d| 在线视频国产一区| 色呦呦国产精品| 91网站在线播放| 99re亚洲国产精品| 菠萝蜜视频在线观看一区| 国产很黄免费观看久久| 老汉av免费一区二区三区| 偷拍亚洲欧洲综合| 香蕉乱码成人久久天堂爱免费| 自拍偷拍欧美精品| 亚洲欧美综合在线精品| 日本一区二区视频在线| 久久久国产精华| 久久久久久一二三区| 国产亚洲欧美日韩俺去了| 国产日韩影视精品| 国产嫩草影院久久久久| 久久久777精品电影网影网 | 91精品国产91热久久久做人人 | 国产精品久久久久9999吃药| 国产日韩欧美在线一区| 中文字幕国产一区二区| 国产欧美一区二区在线| 国产精品久久精品日日| 亚洲欧洲日韩综合一区二区| 成人免费小视频| 1024成人网| 亚洲成在线观看| 奇米影视在线99精品| 另类小说色综合网站| 国产成人av资源| 91麻豆精品在线观看| 欧美午夜片在线观看| 日韩一区和二区| 国产日韩成人精品| 成人欧美一区二区三区| 亚洲韩国精品一区| 免费在线观看精品| 国产精品99久久久| 91精品1区2区| 日韩一区二区在线看| 国产欧美综合在线观看第十页| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 亚洲欧洲精品一区二区精品久久久| 亚洲天堂av老司机| 天堂精品中文字幕在线| 国产69精品久久777的优势| 91蜜桃网址入口| 日韩亚洲国产中文字幕欧美| 国产精品日日摸夜夜摸av| 亚洲国产精品视频| 国产成人午夜视频| 色综合久久久久综合体桃花网| 欧美一区二区三区视频免费| 国产精品全国免费观看高清| 夜夜嗨av一区二区三区四季av| 麻豆中文一区二区| 91在线观看污| 亚洲精品一区二区三区99| 亚洲自拍偷拍av| 成人av午夜电影| 精品盗摄一区二区三区| 一区二区三区四区精品在线视频 |