純css讓背景圖片不停圍繞中心旋轉
阿新 • • 發佈:2020-07-10
效果圖:
<!DOCTYPEhtml> <htmllang="en"> <head> <metacharset="UTF-8"> <title>Title</title> <style> .logo{ text-align:center; margin-top:100px; } @keyframesrotation{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }.Rotation{ transform:rotate(360deg); animation:rotation8slinearinfinite; }
<body> <divclass="logo"> <imgclass="Rotationimg"src="http://cdn.jingqueyun.com/turntable/image/theme/theme2/turntable-outer-bg2.png"width="128"height="128"/> </div> </body> </html>