| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- html,body{
- margin: 0;
- padding: 0;
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- overflow: hidden;
- margin-bottom: 10%;
- }
- .loader {
- border: 5px solid #f3f3f3;
- border-radius: 50%;
- border-top: 5px solid #3498db;
- width: 30px;
- height: 30px;
- -webkit-animation: spin 2s linear infinite;
- animation: spin 2s linear infinite;
- margin: auto auto;
- }
- @-webkit-keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- }
- }
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- </style>
- </head>
- <body>
- <div class="loader"></div>
- </body>
- </html>
|