首页 > 代码库 > 每日计划-html+css作品:一个加载动画
每日计划-html+css作品:一个加载动画
动画挺简单,关键是渐隐渐现的次序及时间
那个缩放可以去掉的,懒得调了...
<style> #show { height : 140px; width : 150px; margin:auto; margin-top:45%; transform: scale(2,2) } #load {font-family : Arial; text-align : center; padding-top:20px; } .t{ height:30px; width:30px; float:left; background-color:black; opacity : 0; animation : transform 4s infinite; position:absolute; } #transform{margin-top:30px; width:100%; position:relative; } #t1 { left:20px;} #t2 {left:60px; animation-delay : 0.5s;} #t3 {left:100px; animation-delay : 1s;} @keyframes transform { 0% { opacity : 0;} 20% { opacity : 1;} 40% { opacity : 0;} 60% { opacity : 0;} 80% { opacity : 1;} 100% { opacity : 0;} } </style> <div id="show"> <div id="load"> loading... </div> <div id="transform"> <div class="t" id="t1"> </div> <div class="t" id="t2"></div> <div class="t" id="t3"></div> </div>
<style></style>
loading...
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。