2 回答
慕后森
TA贡献1802条经验 获得超5个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="jquery.min.js"></script>
<style>
div{
height: 100px;
width: 100px;
background-color: red;
}
@keyframes animation {
40% {
transform: rotate(120deg);
}
60% {
transform: rotate(120deg);
}
100% {
transform: rotate(240deg);
}
}
.animation {
animation: animation 2s ease;
animation-fill-mode : forwards;/*保持结束位置*/
}
</style>
</head>
<body>
<div class="animation">
</div>
</body>
</html>
- 2 回答
- 0 关注
- 1242 浏览
添加回答
举报
0/150
提交
取消