hey spark do you have any way you can make your profile picture float like with css?
You'd need to write CSS animation and then apply it to .profile_avatar
.
Something like this:
@keyframes float {
from {
transform: translateY(0);
}
to {
transform: translateY(-10px);
}
}
(don't take this exactly, I haven't tested it)
Look up how to apply an animation with CSS. It might also help you to read this.
Reactions
Comments
Leave a comment