38 lines
883 B
HTML
38 lines
883 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" href="./index.css">
|
|
<link rel="stylesheet" href="http://at.alicdn.com/t/font_2631342_lyqjl0e3hf.css">
|
|
</head>
|
|
|
|
<body>
|
|
<button onclick="dian()">按钮</button>
|
|
|
|
<div class="bj"></div>
|
|
|
|
</body>
|
|
<script src="utils.js"></script>
|
|
<script src="Popups.js"></script>
|
|
<script>
|
|
function dian() {
|
|
new Popups({
|
|
Name: ("bj"),
|
|
contter: "这是标题",
|
|
iconfont: "成功", //警告(wait),成功(success),错误(error),消息(default)
|
|
neirong: "这是内容",
|
|
guanbi1: false,
|
|
weizhi: "LeftTop", //LeftTop RightTop LeftBottom RightBottom
|
|
iconfontEvent: () => {
|
|
console.log("取消按钮被点击")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
</script>
|
|
|
|
</html> |