animation name
by rootjang
HTML
<!DOCTYPE html>
<html lang="ko-KR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
#box1 {
width: 100px;
height: 100px;
background: #4cff00;
border: 1px solid black;
animation-name: shape;
animation-duration: 3s;
}
#box2 {
width: 100px;
height: 100px;
margin: 20px;
background-color: #8f06b0;
border: 1px solid black;
animation-name: rotate;
animation-duration: 3s;
}
@keyframes shape {
from {
border: 1px solid black;
}
to {
border: 1px solid black;
border-radius: 50%;
}
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(45deg);
}
}
</style>
</head>
<body>
<div id="box1"></div>
<div id="box2"></div>
</body>
</html>