thingy
made by ace
by gael
HTML
<style>
#container {
width: 20em;
height: 10em;
border: 1px solid black;
padding: 1em;
overflow: hidden;
}
.insides {
position: relative;
transform: translateX(-10em);
width: 100%;
height: 0%;
opacity: 0;
transition: .4s all;
padding: .2em;
box-sizing: border-box;
}
.scroll {
border: 1px solid black;
color: black;
overflow-y: auto;
height: 100%;
}
#container:hover .insides {
opacity: 1;
height: 100%;
transform: translate(0, 0);
}
</style>
<div id="container">
<div class="insides">
<div class="scroll">
hysfnsdkckjsf <img src="https://xyz.crd.co/assets/images/gallery05/45a8f6b5.gif?v=3d30aeb5">. bloalnfadkfmnadjfkk <br> base code cr: carrduser
</div>
</div>
</div>