<!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>
*{
padding: 0;
margin: 0;
}
body{
width: 100vw;
height: 100vh;
display: grid;
grid-template: 1fr/1fr;
}
.btn{
width: 200px;
height: 50px;
text-align: center;
line-height: 50px;
color:green;
justify-self: center;
align-self: center;
}
.btn::after{
content: '';
width: 3px;
height: 3px;
display: inline-block;
animation-name: yd;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes yd {
from{
box-shadow: none;
}
30%{
box-shadow: 3px 0 0 currentColor;
}
60%{
box-shadow: 3px 0 0 currentColor,9px 0 0 currentColor;
}
90%{
box-shadow: 3px 0 0 currentColor,9px 0 0 currentColor,15px 0 0 currentColor;
}
to{
box-shadow: 3px 0 0 currentColor,9px 0 0 currentColor,15px 0 0 currentColor;
}
}
</style>
</head>
<body>
<button class="btn">提交</button>
</body>
</html>
css3之animation 提交按钮简单的动画
花开花落的博客2023-08-27 15:57
相关推荐
请叫我欧皇i19 分钟前
html本地离线引入vant和vue2(详细步骤)533_22 分钟前
[vue] 深拷贝 lodash cloneDeepguokanglun28 分钟前
空间数据存储格式GeoJSONzhang-zan1 小时前
nodejs操作selenium-webdriver猫爪笔记1 小时前
前端:HTML (学习笔记)【2】brief of gali1 小时前
记录一个奇怪的前端布局现象Json_181790144802 小时前
电商拍立淘按图搜索API接口系列,文档说明参考风尚云网3 小时前
风尚云网前端学习:一个简易前端新手友好的HTML5页面布局与样式设计木子02043 小时前
前端VUE项目启动方式GISer_Jing3 小时前
React核心功能详解(一)