49 lines
988 B
HTML
49 lines
988 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ad {
|
|
width: 300px;
|
|
height: 300px;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: red;
|
|
}
|
|
|
|
.ad span {
|
|
width: 60px;
|
|
height: 30px;
|
|
background: #000;
|
|
color: #fff;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="ad">
|
|
<span>x关闭</span>
|
|
</div>
|
|
</body>
|
|
<script src="./index.js"></script>
|
|
|
|
</html> |