asunavt's profile picture

Published by

published

Category: Web, HTML, Tech

mario flies on your profile

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">


8 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )