Important!
Comment if u using it😈
<style>
@keyframes walk‑across {
 0% {
  left: 0;
  transform: scaleX(1); /* facing right */
 }
 49% {
  transform: scaleX(1); /* still facing right */
 }
 50% {
  transform: scaleX(-1); /* flip to face left */
 }
 100% {
  left: calc(100% - 120px); /* move to right edge minus image width */
  transform: scaleX(-1); /* still facing left */
 }
}
.walker {
 position: fixed; /* stays visible when scrolling */
 bottom: 20px; /* how far from bottom of screen */
 left: 0;
 width: 120px; /* size of the image */
 height: auto;
 z-index: 9999; /* in front of most content */
 animation: walk‑across 14s linear infinite alternate;
 pointer-events: none; /* won’t block clicks on other things */
}
</style>
<img class="walker" src="https://files.catbox.moe/0s6jxd.png" alt="Walking Character">

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