<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
position: relative;
animation-name: example;
animation-duration: 3s;
animation-fill-mode: forwards;
}
@keyframes example {
from {top: 0px;}
to {top: 200px; background-color: blue;}
}
</style>
</head>
<body>
<p>Дозвольте елементу div зберегти значення стилю із останнього ключового кадру по закінченню анімації:</p>
<div></div>
<p><b>Примітка:</b> Властивість animation-fill-mode не підтримується в Internet Explorer 9 і більш ранніх версіях.</p>
</body>
</html>