this will make your profile picture, your friend's pictures, and the user pictures in your comments sections "shake" when you hover your mouse over them.
<style>
/* Shake animation keyframes */
@keyframes shake {
0% { transform: translate(0, 0); }
20% { transform: translate(-3px, 0); }
40% { transform: translate(3px, 0); }
60% { transform: translate(-3px, 0); }
80% { transform: translate(3px, 0); }
100% { transform: translate(0, 0); }
}
/* Apply shake on hover */
.profile-pic img:hover, .friends-grid img:hover, .comments-table td img:hover{
animation: shake 0.5s;
animation-iteration-count: 1;
}
</style>