1 Star 0 Fork 34

zg_tong/h5_css3

forked from zy_laoyang/h5_css3 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index_xzan.html 813 Bytes
一键复制 编辑 原始数据 按行查看 历史
zy_laoyang 提交于 2020-03-31 08:48 . 样式表练习
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>旋转按钮</title>
<style type="text/css">
ul li {
float: left;
margin: 10px;
list-style: none;
}
#box img {
transition: all 0.3s ease-in-out;
}
#box img:hover {
transform: rotate(-360deg) scale(1.5);
}
</style>
</head>
<body>
<h2>顺时针旋转360度放大1.2倍</h2>
<ul id="box">
<li><a href="#"><img src="images/rss.png" /></a></li>
<li><a href="#"><img src="images/delicious.png" /></a></li>
<li><a href="#"><img src="images/facebook.png" /></a></li>
<li><a href="#"><img src="images/twitter.png"/></a></li>
<li><a href="#"><img src="images/yahoo.png" /></a></li>
</ul>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zy_tong/h5_css3.git
git@gitee.com:zy_tong/h5_css3.git
zy_tong
h5_css3
h5_css3
master

搜索帮助