position.js

来自「Web版的WorkFlow流程设计器.采用Javascript编写,不需要服务器」· JavaScript 代码 · 共 12 行

JS
12
字号
/**
  * the positon contains top and left property
  * @auther:shennan amushen@yahoo.com.cn
  * @date:2008-1-6
  */
function Position(top,left){
	this.top=parseFloat(top);
	this.left=parseFloat(left);
	this.toString=function(){
		return this.top+","+this.left;	
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?