다음은 CSS로 이미지를 흔드는 코드입니다 −
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img{ width: 400px; height: 400px; margin:50px; } img:hover { animation: shakeImg 0.5s; animation-iteration-count: infinite; } @keyframes shakeImg { 0% { transform: translate(1px, 1px) rotate(5deg); } 20% { transform: translate(-3px, 0px) rotate(10deg); } 30% { transform: translate(3px, 2px) rotate(-10deg); } 50% { transform: translate(-1px, 2px) rotate(-20deg); } 70% { transform: translate(3px, 1px) rotate(-25deg); } 90% { transform: translate(1px, 2px) rotate(10deg); } 100% { transform: translate(1px, -2px) rotate(-10deg); } } </style> </head> <body> <h1>Hover over the image to shake it<h1> <img src="https://i.picsum.photos/id/551/400/400.jpg"> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
이미지 위로 마우스를 가져가면 아래 출력과 같이 흔들립니다. -