Files
WEBSITE_hugulumu/ascii_elements/mouse_frame.html
2023-10-28 02:29:29 +02:00

38 lines
646 B
HTML

<div class="mouse_frame">
<div class="content_html"></div>
</div>
<div class="test">
<p class="content_html"></p>
</div>
<style>
.mouse_frame {
position: relative;
margin-left: 0px;
/*
border: 1px solid red;
margin-right: auto;
height: 8.5em;
width: 11.9em;
*/
width: fit-content;
}
pre.mouse {
--tmouse: 2s;
position: absolute;
left: 0px;
bottom: 0px;
margin: 0px;
opacity: 0;
animation-name: mouse;
animation-iteration-count: infinite;
animation-duration: var(--tmouse);
animation-timing-function: linear;
animation-direction: normal;
}
pre.mouse:first-child {
position: relative;
}
</style>