1 Star 0 Fork 0

风光/个人收藏

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
03_ex.html 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
风光 提交于 2019-10-14 22:14 . 123
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#d1 {
width:1000px;
height: 200px;
border:1px solid green;
margin:auto;
position:relative;
}
#d1 img{/*width:180px;height:180px;position:absolute;left:80%;*/
/* animation:car 10s linear infinite;*/
width:150px;height:150px;
position:absolute;left:80%;
animation:car 10s linear infinite;
}
@keyframes car{
0%{}
49%{transform:rotate(0deg);}
50%{left:0;transform:rotateY(180deg);}
99%{transform:rotateY(180deg);}
100%{transform:rotateY(0deg);}
}
/*旋转机器人*/
#a1{width:501px;
height:326px;
border:1px solid green;
margin:auto;
position:relative;}
.before,.after{
width:500px;
height:325px;
position:absolute;
left:0;top: 0;
transition:all 1s linear;
backface-visibility:hidden;
}
.after{transform:rotateY(180deg);
position:absolute;
left:200px;top: 10px;
}
#a1:hover .before{
transform:rotateY(180deg);
}
#a1:hover .after{
transform:rotate(0deg);
}
</style>
</head>
<body>
<div id="d1">
<img src="12.jpg" alt="">
</div>
<br>
<br>
<!-- 旋转机器人 -->
<div id="a1">
<img class="before" src="1.jpg" alt="">
<div class="after">
<h1>静夜思</h1>
<p>李白</p>
<p>床前明月光,</p>
<p>疑是地上霜.</p>
<p>举头望明月,</p>
<p>低头思故乡.</p>
</div>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guang88/practise_hand.git
git@gitee.com:guang88/practise_hand.git
guang88
practise_hand
个人收藏
lianshou

搜索帮助