
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body {
background-color: #f0f0f0;
}
@keyframes bounce-234009c7 {
0%, 100% {
transform: translateY(0.15625rem);
}
50% {
transform: translateY(-0.15625rem);
}
}
.text {
width: 100px;
height: 100px;
background-color: #000;
animation: bounce-234009c7 .8s ease infinite;
}
</style>
<body>
<div class="text"></div>
</body>
</html>

1624

被折叠的 条评论
为什么被折叠?



