Свойство animation

Описание

Используется для создания анимации.
Сокращенная запись для свойств animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, animation-direction, animation-fill-mode и animation-play-state.

Синтаксис

animation: animation-duration || animation-timing-function || animation-delay || animation-iteration-count || animation-direction || animation-fill-mode || animation-play-state || [none | animation-name ;

-

Любые комбинации значений, разделяемых между собой пробелом, определяющих параметры анимации.

Пример

<!DOCTYPE html>
<html lang='ru'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Document</title>
</head>
<body>
<style> 
#anima{ 
width: 105px; 
height: 105px; 
border-radius: 5px; 
background-color: lightgreen; 
border: 3px dotted black; 
animation: rotate-name 3s ease-in-out infinite; 
} 
@keyframes rotate-name{ 
0%{ 
transform: rotate(0deg); 
} 
100%{ 
transform: rotate(360deg); 
} 
} 
</style> 
<div id='anima'></div>
</body>
</html>