ShadowEditor/ShadowEditor.UI/test/04 ContainerTest.html
2018-10-31 12:09:49 +08:00

32 lines
783 B
HTML

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>Container Test</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
</head>
<body>
<script src="../dist/ShadowUI.js"></script>
<script>
var control = UI.create({
xtype: 'container',
children: [{
xtype: 'html',
html: 'This is the first line.<br />'
}, {
xtype: 'html',
html: 'This is the second line.<br />'
}, {
xtype: 'html',
html: '<span style="color: red;">This is a red line.</span>'
}]
});
control.render();
</script>
</body>
</html>