Свойства CSS: Как указать продолжительность анимации для завершения?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>How to specify the duration of an animation takes to complete</title>
</head>
<body>
<div class="animation">
<div class="w3r">
w3resource Tutorial
</div>
</div>
<style type="text/css">
.w3r {
color: white;
float: left;
margin-right: 2%;
font-size: 20px
}
.animation {
background-color: #CC3333;
height: 50px;
width: 100%;
overflow: hidden;
}
div {
width: 100px;
height: 100px;
background: #33FFFF;
position: relative;
-webkit-animation: move 5s infinite; /* Chrome, Safari, Opera */
-webkit-animation-delay: 5s; /* Chrome, Safari, Opera */
animation: move 5s infinite;
animation-duration: alternate, reverse, normal;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
from {top: 0px;}
to {top: 200px;}
}
@keyframes mymove {
from {top: 0px;}
to {top: 200px;}
}
</style>
</body>
</html>
Демонстрация в реальном времени:
Смотрите Pen Animation -duration-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code