Свойства CSS: Как установить ширину нижней границы анимации?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to set the width of the bottom border animatable</title>
<style>
#div {
width: 150px;
height: 100px;
border: 1px solid red;
-webkit-animation: mymove 5s infinite;
animation: mymove 5s infinite;
}
@keyframes mymove {
50% {border-bottom-width: 50px;}
}
</style>
</head>
<body>
<div id="div">CSS, stands for Cascading Style Sheet is a computer language to describe presentation.</div>
</body>
</html>
Демонстрация в реальном времени:
См. Pen border-bottom-width-animatable-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code