cid1016 使用HTML CSS 实现一个有趣的加载页面
Warning: Undefined property: stdClass::$maxbutton id="5" in /www/wwwroot/code.5g-o.com/wp-content/plugins/kama-clic-counter/class.KCCounter.php on line 733
index.html
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="box"></div> <div class="box"></div> </div> </body> </html>
style.css
body{ margin: 0; padding: 0; background: #344; } .container{ position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; } .box{ position: absolute; width: 30px; height: 30px; background: #e74c3c; } .box:nth-child(1){ animation: a1 2s infinite linear; } .box:nth-child(2){ animation: a2 2s infinite linear; } @keyframes a1 { 0%{ top: 0; left: 0; width: 30px; height: 30px; } 12.5%{ top: 0; left: 0; width: 60px; height: 30px; } 25%{ top: 0; left: 0; width: 60px; height: 30px; } 37.5%{ top: 0; left: 30px; width: 30px; height: 30px; } 50%{ top: 0; left: 30px; width: 30px; height: 30px; } 62.5%{ top: 0; left: 30px; width: 30px; height: 60px; } 75%{ top: 0; left: 30px; width: 30px; height: 60px; } 87.5%{ top: 30px; left: 30px; width: 30px; height: 30px; } 100%{ top: 30px; left: 30px; width: 30px; height: 30px; } } @keyframes a2 { 0%{ right: 0; bottom: 0; width: 30px; height: 30px; } 12.5%{ right: 0; bottom: 0; width: 30px; height: 30px; } 25%{ right: 0; bottom: 0; width: 60px; height: 30px; } 37.5%{ right: 0; bottom: 0; width: 60px; height: 30px; } 50%{ right: 30px; bottom: 0; width: 30px; height: 30px; } 62.5%{ right: 30px; bottom: 0; width: 30px; height: 30px; } 75%{ right: 30px; bottom: 0; width: 30px; height: 60px; } 87.5%{ right: 30px; bottom: 0; width: 30px; height: 60px; } 100%{ right: 30px; bottom: 30px; width: 30px; height: 30px; } }
一键获取本网站前端代码设计的所有源码
获取资源构建和完善自己的源码库
源码可以在本地直接演示
同时研究和体验 如何将一些具体的想法的实现过程
源码可以直接嫁接到自己的网站里复用
稍作修改成为自己的作品