new features
This commit is contained in:
30
index.html
30
index.html
@ -401,11 +401,26 @@
|
||||
<option value="60">60 FPS</option>
|
||||
</select>
|
||||
</label>
|
||||
<label style="color: #ccc; font-size: 12px; margin-right: 10px;">
|
||||
Render Mode:
|
||||
<select id="render-mode-select" style="background: rgba(255,255,255,0.1); border: 1px solid #555; color: #fff; padding: 4px; border-radius: 4px;">
|
||||
<option value="classic" selected>Classic</option>
|
||||
<option value="grayscale">Grayscale</option>
|
||||
<option value="red">Red Channel</option>
|
||||
<option value="green">Green Channel</option>
|
||||
<option value="blue">Blue Channel</option>
|
||||
<option value="rgb">RGB Split</option>
|
||||
<option value="hsv">HSV</option>
|
||||
<option value="rainbow">Rainbow</option>
|
||||
</select>
|
||||
</label>
|
||||
<button id="help-btn">?</button>
|
||||
<button id="fullscreen-btn">Fullscreen</button>
|
||||
<button id="hide-ui-btn">Hide UI</button>
|
||||
<button id="random-btn">Random</button>
|
||||
<button id="share-btn">Share</button>
|
||||
<button id="export-png-btn">Export PNG</button>
|
||||
<button id="export-gif-btn">Export GIF</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -464,6 +479,21 @@
|
||||
<p><strong><< >></strong> - Bit shift left/right</p>
|
||||
<p><strong>+ - * / %</strong> - Math operations</p>
|
||||
</div>
|
||||
|
||||
<div class="help-section">
|
||||
<h4>Render Modes</h4>
|
||||
<p><strong>Classic</strong> - Original colorful mode</p>
|
||||
<p><strong>Grayscale</strong> - Black and white</p>
|
||||
<p><strong>Red/Green/Blue</strong> - Single color channels</p>
|
||||
<p><strong>HSV</strong> - Hue-based coloring</p>
|
||||
<p><strong>Rainbow</strong> - Spectrum coloring</p>
|
||||
</div>
|
||||
|
||||
<div class="help-section">
|
||||
<h4>Export</h4>
|
||||
<p><strong>Export PNG</strong> - Save current frame as image</p>
|
||||
<p><strong>Export GIF</strong> - Save 2-second animation (if animated)</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="performance-warning">
|
||||
|
||||
Reference in New Issue
Block a user