mirror of
https://github.com/YusufB5/ASCILINE.git
synced 2026-06-17 22:35:13 +02:00
Initial commit: ASCILINE Engine - Modular & Optimized
This commit is contained in:
commit
7cd84b657b
7 changed files with 1016 additions and 0 deletions
38
index.html
Normal file
38
index.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>ASCILINE | Real-Time ASCII Engine</title>
|
||||
|
||||
<!-- Core Styles -->
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Live Status Indicator -->
|
||||
<div id="status" class="status">Ready</div>
|
||||
|
||||
<!-- Header Section -->
|
||||
<h1>ASCILINE</h1>
|
||||
<p class="subtitle">real-time ascii streaming engine</p>
|
||||
|
||||
<!-- Main Player Container -->
|
||||
<div id="player-container">
|
||||
<!-- Text-based rendering (B&W Mode) -->
|
||||
<pre id="ascii-player"></pre>
|
||||
|
||||
<!-- Canvas-based rendering (Color Modes) -->
|
||||
<canvas id="ascii-canvas"></canvas>
|
||||
|
||||
<!-- Tap to Play Interaction Overlay -->
|
||||
<div id="play-overlay">
|
||||
<div class="play-btn"></div>
|
||||
<span class="play-label">Tap to Play</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Core Engine Logic -->
|
||||
<script src="/static/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue