- #loading {
- width: 20px;
- height: 20px;
- margin: 100px;
- background: green;
- border-radius: 10px;
- box-shadow: 0px 10px 10px -8px green;
- -webkit-animation-name: loading;
- -webkit-animation-duration: 10s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: ease-in;
- }
- @keyframes loading {
- 0% {width: 20px;}
- 90% {width: 1000px;}
- }