1 Star 0 Fork 0

zz/ web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
20230328.html 3.60 KB
一键复制 编辑 原始数据 按行查看 历史
zz 提交于 2023-04-03 10:24 . qqq
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>广告实验</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
.web{
width:1000px;
height: 1000px;
background-color: #cecece;
border: #666666 1px solid;
margin: 0 auto
}
.web1{
width:1000px;
height: 1000px;
background-color: #183d23;
border: #2c3187 1px solid;
margin: 0 auto
}
.web2{
width:1000px;
height: 1000px;
background-color: #1f1f21;
border: #520f0f 1px solid;
margin: 0 auto
}
#ad1,#ad2{
position: fixed;
top:0px;
width:100px;
height: 200px;
background-image: url(add/ad1.jpg);
}
#ad1{left: 0;}/*靠左*/
#ad2{right:0 ;}
#ad3{
position: fixed;
bottom:0px;/*右下*/
right:0px;
height:250px ;
width:300px ;
background-image: url(add/ad2.jpg);
}
#close,#close1{
width: 50px;
height:15px ;
object-fit: cover;
position: absolute;
bottom:0;
right:0;
background-image: url(add/close.png);
background-repeat:no-repeat;
background-size:cover;
background-position:center center;
}
#close3{
width: 50px;
height:15px ;
object-fit: cover;
position: absolute;
top:0;
right:0;
background-image: url(add/close.png);
background-repeat:no-repeat;
background-size:cover;
background-position:center center;
}
</style>
<body>
<div id=ad1>
<div id="close" ></div>
</div>
<div class="web"></div>
<div class="web1"></div>
<div class="web2"></div>
<div id=ad2>
<div id="close1" ></div>
</div>
<div id="ad3" style="display:none;"><div id="close3"></div></div>
</body>
<script type="text/javascript">
var close=document.querySelector("#close");
var close1=document.querySelector("#close1");
var close3=document.querySelector("#close3");
var ad1=document.getElementById('ad1');
var ad2=document.getElementById('ad2');
close.onclick=function(){
ad1.style.display="none";
ad2.style.display="none";
}
close1.onclick=function(){
ad1.style.display="none";
ad2.style.display="none";
}
close3.onclick=function(){
var ad3=document.getElementById('ad3');
ad3.style.display="none";
}
window.onload=function(){//页面加载事件
var ad3=setTimeout(function(){
var ad3=document.getElementById('ad3');
ad3.style.display="inline"
},3000)
}
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/z439442/web.git
git@gitee.com:z439442/web.git
z439442
web
web
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385