32 lines
757 B
HTML
32 lines
757 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_2604059_7fkd3tbt2kd.css">
|
|
</head>
|
|
<body>
|
|
<button type="button" class="Click">点击打开</button>
|
|
<div class="Popup">
|
|
<div class="top">
|
|
<p>提示<p>
|
|
<i class="iconfont icon-guanbi"></i>
|
|
|
|
</div>
|
|
<p>这是一段信息</p>
|
|
<div class="bottom">
|
|
<button type="button" class="bu1">关闭</button>
|
|
<button type="button" class="bu2">确定</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="index.js">
|
|
</script>
|
|
<script>
|
|
// window.onload = function(){
|
|
// document.body.style.background="#000";
|
|
// }
|
|
</script>
|
|
|
|
</html> |