Crucifix Arnaud

Sprite

Original sprite

A sprite sheet of a DarkSoul bonfire, with a sword planted in the middle and some flames, there are 4 sprites.

Animated

A DarkSoul bonfire, with a sword planted in the middle, with flickering flame.
.bonfire {
    width: 96px;
    height: 96px;
    object-fit: cover;
    animation: bonfire 750ms steps(4, jump-none) infinite;
}

@keyframes bonfire {
    from {
        object-position: 0;
    }
    to {
        object-position: 100%;
    }
}

Links