Сообщение от Lefseq
|
одно вертикальное движение снизу вверх и осталась вверху?
|
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.square {
width: 200px;
height: 200px;
border-radius: 10px;
background-color: #d42929;
position: absolute;
top: calc(100% - 200px);
left: 0;
z-index: 1;
animation: move 3s linear forwards 5s;
}
@keyframes move {
to {
top: 0;
}
}
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>