ShadowEditor/ShadowEditor.UI/test/10 CloseButtonTest.html
2018-11-12 20:53:32 +08:00

34 lines
751 B
HTML

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>10 CloseButtonTest</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="../assets/css/icon/iconfont.css" />
</head>
<body>
<script src="../dist/ShadowEditor.UI.js"></script>
<script>
const {
Control,
UI
} = Shadow;
var control = UI.create({
xtype: 'closebutton',
style: {
color: '#555'
},
onClick: function () {
alert('You clicked CloseButton.');
}
});
control.render();
</script>
</body>
</html>