1 Star 0 Fork 83

屈冰芝/前端页面效果合集

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
弹动按钮011 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
木兰君 提交于 2021-06-07 08:49 . rename 弹动按钮 to 弹动按钮011.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.shake {
width: 40px;
height: 40px;
display: block;
background: lightgreen;
border-radius: 50%;
margin: 100px;
color: #fff;
font-size: 24px;
text-align: center;
line-height: 40px;
cursor: pointer;
transition: all 0.25s;
}
.shake:hover {
animation: shake 0.25s;
background: lightblue;
}
@keyframes shake {
0%,
10%,
55%,
90%,
94%,
98%,
100% {
-webkit-transform: scale(1, 1);
}
30% {
-webkit-transform: scale(1.14, 0.86);
}
75% {
-webkit-transform: scale(0.92, 1.08);
}
92% {
-webkit-transform: scale(1.04, 0.96);
}
96% {
-webkit-transform: scale(1.02, 0.98);
}
99% {
-webkit-transform: scale(1.01, 0.99);
}
}
</style>
</head>
<body>
<span class="shake"></span>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qu-bingzhi/front_page_effect_collection.git
git@gitee.com:qu-bingzhi/front_page_effect_collection.git
qu-bingzhi
front_page_effect_collection
前端页面效果合集
master

搜索帮助