d
2024-08-22 13:28:14
发布于:浙江
$
<!DOCTYPE html>
<html>
<head>
<style>
@keyframes example {
from {background-color: red;}
to {background-color: yellow;}
}
div {
width: 100px;
height: 100px;
background-color: red;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
$
g f df
这里空空如也
有帮助,赞一个