画像を振る方法
CSSを使って画像を振る方法を学びます。
マウスを画像に合わせてください:

画像を振る方法
img:hover { /* 振動アニメーションを開始し、このアニメーションを 0.5 秒間続ける */ animation: shake 0.5s; /* アニメーションが終了した後に再開 */ animation-iteration-count: infinite; } @keyframes shake { 0% { transform: translate(1px, 1px) rotate(0deg); } 10% { transform: translate(-1px, -2px) rotate(-1deg); } 20% { transform: translate(-3px, 0px) rotate(1deg); } 30% { transform: translate(3px, 2px) rotate(0deg); } 40% { transform: translate(1px, -1px) rotate(1deg); } 50% { transform: translate(-1px, 2px) rotate(-1deg); } 60% { transform: translate(-3px, 1px) rotate(0deg); } 70% { transform: translate(3px, 1px) rotate(-1deg); } 80% { transform: translate(-1px, -1px) rotate(1deg); } 90% { transform: translate(1px, 2px) rotate(0deg); } 100% { transform: translate(1px, -2px) rotate(-1deg); } }
関連ページ
チュートリアル:CSS 3D変換