12 lines
203 B
CSS
12 lines
203 B
CSS
.line {
|
|
height:10px;
|
|
width:0;
|
|
margin-top:100px;
|
|
background:red;
|
|
transform:rotate(-45deg);
|
|
transform-origin:left;
|
|
animation:grow 1s linear forwards;
|
|
}
|
|
@keyframes grow{
|
|
to {width:100px;}
|
|
}
|