hello Capriyah! do you perhaps know some CSS to make one's Neospring profile picture float? :)
Hey Anon! Perhaps I do.
The -20px part of the code will move your pfp up 20px and the float 3s will make your pfp float at that speed. If you’d like to adjust it then go ahead!
.profile_avatar {
width: 100px;
height: 100px;
position: relative;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
Leave a comment