so i found the spinning mike :]
code ⇊ (copy the top part aswell)
/*spinning mini mike wheeler, you can change the image*/
.general-about{
position: relative;
margin-top: 30px;
}
.general-about .profile-pic:before{
content: '';
background: url(https://i.ibb.co/h2HGhfx/95906db0189fd0c7ea6745b4321de22c-prev-ui-1.png) no-repeat;
background-size: cover;
display: block;
width: 75px;
height: 75px;
z-index: 7;
position: absolute;
top: -43px;
left: 100px;
animation-name: spin;
animation-duration: 5000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
transition: left ease 0.5s;
}
.profile-pic:hover:before {
left: -75px;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
.profile-pic .pfp-fallback {
float: right;
width: 163px;
height: 160px;
border: none;
}
</style>
Comments
Displaying 0 of 0 comments ( View all | Add Comment )