Свойства CSS: Как анимировать что-то, перемещающееся из одного места в другое, и оставить его там?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>How to animate something moving from one place to another and have it stay there</title>
</head>
<body>
<p>Move your mouse over the grey box</p>
<div class="xyz">
<div class="grows">w3resource Tutorials</div>
<div class="growsandstays">w3resource Tutorials</div>
</div>
<style type="text/css">
.xyz {
border-top: 100px solid #ccc;
height: 300px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #89CC00;
}
@keyframes grow {
0% { font-size: 0 }
100% { font-size: 40px }
}
@-webkit-keyframes grow {
0% { font-size: 0 }
100% { font-size: 40px }
}
.xyz:hover .grows {
animation-name: grow;
animation-duration: 5s;
-webkit-animation-name: grow;
-webkit-animation-duration: 5s;
}
.xyz:hover .growsandstays {
animation-name: grow;
animation-duration: 5s;
animation-fill-mode: forwards;
-webkit-animation-name: grow;
-webkit-animation-duration: 5s;
-webkit-animation-fill-mode: forwards;
}
</style>
</body>
</html>
Демонстрация в реальном времени:
См. Pen animation-fill-mode-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code