#chung { animation: rotation 1s; animation-timing-function: linear; animation-iteration-count: infinite; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }