博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一款纯css3实现的条纹加载条
阅读量:6759 次
发布时间:2019-06-26

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

之前为大家带来了很多加载动画。  ,。今天给大家分享一款纯css3实现的条纹加载条。带有响应式的效果。效果图如下 :

   

实现的代码。

html代码:

css3代码:

.warning {
position: relative; background-color: #6DA807; border: 1px solid #6DA807; border-radius: 10px; box-shadow: 1vw 3vh 10vh rgba(109, 168, 7, 0.8); background-size: 3em 3em; background-image: linear-gradient(-45deg, transparent 0em, transparent 0.8em, #96D923 0.9em, #96D923 2.1em, transparent 2.1em, transparent 2.9em, #96D923 3.1em); -webkit-animation: warning-animation 750ms infinite linear; -moz-animation: warning-animation 750ms infinite linear; animation: warning-animation 750ms infinite linear;}@-webkit-keyframes warning-animation {
0% { background-position: 0 0; } 100% {
background-position: 3em 0; }}@-moz-keyframes warning-animation {
0% { background-position: 0 0; } 100% {
background-position: 3em 0; }}@keyframes warning-animation {
0% { background-position: 0 0; } 100% {
background-position: 3em 0; }}.warning:before {
content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100%; border-radius: 10px; background-image: linear-gradient(to bottom, #6DA807, rgba(171, 226, 77, 0.6) 15%, transparent 60%, #6DA807);}body, html {
position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: 100%;}body {
background-repeat: no-repeat; background-position: center; background-image: radial-gradient(circle, #c0e979, #96d923);}.container {
width: 80vw; margin: 45vh auto 0;}.container .warning {
height: 10vh;}

via:

转载地址:http://gofeo.baihongyu.com/

你可能感兴趣的文章
JAVASCRIPT 转换字符串杂记
查看>>
【无私分享:从入门到精通ASP.NET MVC】从0开始,一起搭框架、做项目(7.1) 模块管理,验证权限,展示模块列表...
查看>>
jquery鼠标悬停事件hover()
查看>>
hql查询语句 内存中的情况,fetch迫切查询关键字
查看>>
RabbitMQ安装,Windows下
查看>>
0415评论博客
查看>>
CSAPP buffer lab记录——IA32版本
查看>>
Hyperledger fabric多机的环境部署
查看>>
关于sqlserver2008 bcp根据数据表导出xml格式文件的小记
查看>>
总结:栈和队列的学习
查看>>
装个centos虚拟机之设置桥接网络
查看>>
线段树(可能还会有树状数组吧)
查看>>
dedecms2
查看>>
O365批量重置用户密码
查看>>
Gartner:安全服务市场预测2011-2015
查看>>
约瑟夫·奈:透视网络空间
查看>>
在VS2012中实现Ext JS的智能提示太简单了
查看>>
理解并实施:HSRP(CCNA200-120新增考点)
查看>>
关于如何去理解和取证生成树(STP)的BackboneFast机制对劣质BPDU的处理
查看>>
LoadRunner 如何将英文的字符串转换成UTF-8格式的字符串?
查看>>