« Back to the HTML Forum

Sooo like I'm kinda new to HTML how can I make my friends pfp bounce of I hover my mouse over it but it stays still of my mouse isn't

Idfk if that makes sense or not TwT


Report Topic

3 Replies

Sort Replies:

Reply by ୨ৎMIMA୨ৎ

posted

<style>
.friends-grid .pfp-fallback:hover {
  animation: bounce 0.2s ease-in-out infinite alternate;
}

  @keyframes bounce {
  from {transform: scale(1);}
  to {transform: scale(1.1);}
}
</style>

very basic bounce animation. if you want it to look different lmk!!


Permalink Report Reply

Reply by Corpse-princess 2.0

posted

WAIT NO CUZ THIS IS LIKE PERFECT TYSMMMM DKDNDIENEN


Permalink Report Reply

Reply by ୨ৎMIMA୨ৎ

posted