JSFiddle - React, Tailwind, and code Playground
by Kevin Pliester
HTML
<div class="abroller">
<div class="content">
Dieser Inhalt ist versteckt.<br>
Dieser hier auch.
</div>
<div class="image">
</div>
</div>
CSS
.abroller {
position:relative;
height: 50px;
width: 300px;
display: flex;
align-items: center;
padding: 25px 25px 25px 35px;
}
.abroller .image {
position: absolute;
background-image: url(https://pixelbart.de/wp-content/uploads/2022/06/abroller.svg);
background-repeat: no-repeat;
width: 100%;
height: 100%;
left: 0;
transition: background .25s linear;
}
.abroller:hover .image {
background-position: -175px;
}