QE (3D Transform และ Animation) – โอห์มม-ธีร..
✨ THEERAWAT JAIMIPHAK
<html> <head> <style> body { background-color: hsl(187, 24%, 54%); } .img { display: block; margin-left: 250px; margin-right: 500px; margin-top: 250px; margin-bottom: 300px; transform-style: preserve-3d; transform: rotate3d(280, 1, 1, 45deg); } .img:hover { animation: animate 1s infinite linear; } @keyframes animate { from { transform: rotateX(0deg); } to { transform: rotateX(359deg); } } </style> </head> <body> <div class="img"> <img class="block width-100%" src="https://cdn.discordapp.com/attachments/769257277320331276/939082037908873236/Garfield_T-Pose.png" alt="Garfield"> </div> </body> </html>