<!DOCTYPE html> <html lang="en"> <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>