⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 layout.js

📁 javascript 很酷的类库
💻 JS
字号:
isc.defineClass("BlueBox", "Label").addProperties({    align:"center",    border:"1px solid #808080",    backgroundColor:"lightblue"})isc.HLayout.create({    width:"100%", height:"100%", membersMargin:20,    members:[        isc.VLayout.create({            showEdges:true,            width:150,            membersMargin:5,  layoutMargin:10,            members:[                isc.BlueBox.create({height:50, contents:"height 50"}),                isc.BlueBox.create({height:"*", contents:"height *"}),                isc.BlueBox.create({height:"30%", contents:"height 30%"})            ]        }),              isc.HLayout.create({            showEdges:true,            height:150, membersMargin:5,  layoutMargin:10,            members:[                isc.BlueBox.create({width:50, contents:"width 50"}),                isc.BlueBox.create({width:"*", contents:"width *"}),                isc.BlueBox.create({width:"30%", contents:"width 30%"})            ]        })    ]})

⌨️ 快捷键说明

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