博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Loading加载动画
阅读量:4972 次
发布时间:2019-06-12

本文共 765 字,大约阅读时间需要 2 分钟。

 

 

<head>
<meta charset="UTF-8">
<title>Loading动画</title>
</head>
<style>
.spinner{
margin: 100px auto;
width: 50px;
height: 60px;
text-align: center;
font-size: 10px;
}
.spinner>div{
background-color: #67cf22;
height: 100%;
width: 6px;
display: inline-block;
animation: mymove 1.2s infinite ease-in-out;
}
.spinner>div:nth-child(2){
animation-delay:-1.1s;
}
.spinner>div:nth-child(3){
animation-delay:-1.0s;
}
.spinner>div:nth-child(4){
animation-delay:-0.9;
}
.spinner>div:nth-child(5){
animation-delay:-0.8s;
}
@keyframes mymove{
0%,40%,100%{transform:scaleY(0.4);}
20%{transform:scaleY(1);}
}
</style>
<body>
<div class="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>

转载于:https://www.cnblogs.com/webljp/p/10154924.html

你可能感兴趣的文章
Java Swing提供的文件选择对话框 - JFileChooser
查看>>
排序:冒泡排序
查看>>
github下载安装
查看>>
Hat’s Words
查看>>
Java中instanceof关键字的用法总结
查看>>
引用类型-Function类型
查看>>
Nginx Configuration 免费HTTPS加密证书
查看>>
(转)Android 仿订单出票效果 (附DEMO)
查看>>
数据库多张表导出到excel
查看>>
微信小程序去除button默认样式
查看>>
11/26
查看>>
Where does Visual Studio look for C++ Header files?
查看>>
Java打包可执行jar包 包含外部文件
查看>>
Docker容器运行ASP.NET Core
查看>>
WPF图片浏览器(显示大图、小图等)
查看>>
.Net码农学Android---系统架构和基本概念
查看>>
Windows Phone开发(37):动画之ColorAnimation
查看>>
DevExpress的Web控件汉化方法
查看>>
js中escape,encodeURI,encodeURIComponent 区别(转)
查看>>
结对编程项目-四则运算整体总结
查看>>