Main/resources/[weapons]/[Scripts]/z4-xhair/ui/index.html
2025-07-26 08:56:55 +02:00

13 lines
580 B
HTML

<div style="width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; display: flex; align-items: center; justify-content: center;">
<div id="whatever" style="display: none; border-radius: 100%; border: 1px solid black; width: 2.5px; height: 2.5px; background-color: #D3D3D3;"></div>
</div>
<script>
window.addEventListener('message', (evt) => {
let ele = document.getElementById('whatever');
if (evt.data === 'xhairShow') {
ele.style.display = 'block';
} else {
ele.style.display = 'none';
}
});
</script>