i made a script that makes mario fly across your profile
<style>
@keyframes flyMario {
0% { left: -100px; }
100% { left: 100vw; }
}
.mario-head {
position: fixed;
top: 50px;
left: -100px;
width: 100px;
height: auto;
animation: flyMario 5s linear infinite;
}
</style>
<img class="mario-head" src="https://i.ibb.co/7JydNWkM/image-removebg-preview-5.png" alt="Flying Mario">
Comments
Displaying 0 of 0 comments ( View all | Add Comment )