Skip to content

Gameย #263

@Jefinh0191881

Description

@Jefinh0191881
<title>PC Virtual</title> <style> body { margin: 0; font-family: Arial; background: #0a2a43; overflow: hidden; } #desktop { width: 100vw; height: 100vh; background: linear-gradient(#0a2a43, #000); position: relative; } .icon { width: 70px; color: white; text-align: center; margin: 10px; cursor: pointer; } .icon div { font-size: 40px; } .window { width: 260px; height: 200px; background: #fff; position: absolute; top: 80px; left: 60px; border-radius: 10px; display: none; } .title { background: #1976d2; color: #fff; padding: 5px; border-radius: 10px 10px 0 0; } .close { float: right; cursor: pointer; } .content { padding: 10px; } #taskbar { position: absolute; bottom: 0; width: 100%; height: 40px; background: #111; color: white; display: flex; align-items: center; padding-left: 10px; } </style>
๐Ÿ“
Bloco
๐Ÿ“
Arquivos
๐Ÿ“ Bloco de Notas โŒ
<textarea id="text" style="width:100%;height:120px;"></textarea>
๐Ÿ“ Arquivos โŒ

๐Ÿ“„ arquivo1.txt

๐Ÿ“„ arquivo2.txt

๐Ÿ–ฅ๏ธ PC Virtual |
<script> function openWin(id) { document.getElementById(id).style.display = "block"; } function closeWin(id) { document.getElementById(id).style.display = "none"; } // relรณgio setInterval(() => { let d = new Date(); document.getElementById("clock").innerText = d.getHours().toString().padStart(2, '0') + ":" + d.getMinutes().toString().padStart(2, '0'); }, 1000); // salvar bloco const text = document.getElementById("text"); text.value = localStorage.getItem("pc_text") || ""; text.addEventListener("input", () => { localStorage.setItem("pc_text", text.value); }); </script>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions