<div class="_app_bambi once">
  <div class="ani_bambiWatching"></div>
</div>

<div class="_app_bambi">
  <div class="ani_bambiWatching"></div>
</div>
._app_bambi {
    position: fixed;
    right: -23px;
    bottom: 0;
    width: 50%;
    max-width: 88px;
    z-index: 999;
    
    &.once {
      right: -23px;
      bottom: 110px;

      & .ani_bambiWatching {
        animation: thinking-once 2s steps(9) forwards;
      }
    }  
}

.ani_bambiWatching{
    width: 89px;
    height: 110px;
    background: url('https://www.bambiland.me/files/large/e8e8d457bd0f014c97545743797f6d24.png') 0 0 no-repeat;
    animation: thinking-infinite 2s steps(10) infinite;
}

@keyframes thinking-infinite {
  0% { background-position: 0; }
  100% { background-position: -894px 0;  }
}

@keyframes thinking-once {
  0% { background-position: 0; }
  100% { background-position: -805px 0;  }
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.