1 Star 0 Fork 0

合照/index

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.54 KB
一键复制 编辑 原始数据 按行查看 历史
合照 提交于 2023-03-17 12:32 . 第一个静态网站
<!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>欢迎来到我的第一个静态网页</title>
<style>
*{
margin: 0;
padding: 0;
}
.bigbox{
display: grid ;
grid-template-columns: 1fr 1fr 1fr;
}
.box1{
height: 100px;
background-color:salmon;
}
.box2{
height: 100px;
background-color: rgb(255, 221, 136);
}
.box2 .wide{
width: 80px;
height: 80px;
margin: 0 auto;
background-color: rgb(74, 255, 107);
transition: width 1s linear;
}
.box2 .wide:hover {
width: 300px;
}
.box2 .high{
width: 80px;
height: 80px;
margin: 0 auto;
background-color: rgb(107, 223, 255);
transition:height 0.5s linear 0.2s;
}
.box2 .high:hover {
height: 200px;
}
.box2 .relolve{
width: 80px;
height: 80px;
margin: 0 auto;
background-color: rgb(255, 143, 214);
transition: transform 3s;
}
.box2 .relolve:hover {
transform: rotate(1080deg);
}
</style>
</head>
<body>
<div class="bigbox">
<div class="box box1"></div>
<div class="box box1">
<h3> <font color="#0000FF">欢迎来到我的第一个静态网站,请使用电脑打开哦</font> </h3>
</div>
<div class="box box1"></div>
<div class="box box1"></div>
<div class=" box box1"></div>
<div class="box box1"><font color="#0000FF"> 本人的微信号是zhao1tiaohe</font></div>
<div class="box box2">
<div class="wide">点我会变宽</div>
</div>
<div class="box box2">
<div class="high">点我会变长</div>
</div>
<div class="box box2">
<div class="relolve">点我会转起来</div>
</div>
<div class="zhanweizhi"></div>
<div class="zhanweizhi"></div>
<div class="zhanweizhi"></div>
<div class="zhanweizhi"></div>
<div class="zhanweizhi"></div>
<div class="zhanweizhi"></div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/z1tiaohe/index.git
git@gitee.com:z1tiaohe/index.git
z1tiaohe
index
index
master

搜索帮助