diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-17 22:33:24 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-17 22:33:24 -0500 |
| commit | 01482068726ee6de5336ed01bfadaeaaaf02666e (patch) | |
| tree | 041e50f7a877551ecf2ec3c8df927fe6ac5aeb86 /public/index.html | |
| parent | ecc580218ac64cc5d42b197bdaf9d15bd551d64b (diff) | |
| download | immich-frame-01482068726ee6de5336ed01bfadaeaaaf02666e.tar.xz immich-frame-01482068726ee6de5336ed01bfadaeaaaf02666e.zip | |
settings page save/load config
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/public/index.html b/public/index.html index afbb504..932d043 100644 --- a/public/index.html +++ b/public/index.html @@ -80,17 +80,17 @@ <label class="settings-label">Image Duration</label> <p>Number of seconds each image will be displayed.</p> </div> - <input class="my-auto rounded-input" name="image_duration" type="number" /> + <input class="my-auto rounded-input" name="image_duration" type="number" step="0.01" /> <div> <label class="settings-label">Transition Duration</label> - <p>Number of seconds each transition between images will take.<br>Set as 0 to disable.</p> + <p>Number of seconds each image transition will take.<br>Set as 0 to disable.</p> </div> - <input class="my-auto rounded-input" name="transition_duration" type="number" /> + <input class="my-auto rounded-input" name="transition_duration" type="number" step="0.01" /> <div> <label class="settings-label">Max Framerate</label> - <p>Target display framerate.<br>Simple transitions look good as low as 12-15 fps.</p> + <p>Target display framerate.<br>Simple transitions look good at 12-15 fps.</p> </div> - <input class="my-auto rounded-input" name="max_framerate" type="number" /> + <input class="my-auto rounded-input" name="max_framerate" type="number" step="0.01" /> <div> <label class="settings-label">Display Size</label> <p>Image size to load on the display.<br>Large thumbnail size is suitable for FHD.</p> @@ -102,12 +102,12 @@ </select> <div> <label class="settings-label">Max Cached Assets</label> - <p>Number of assets that can exist at once in RAM.<br>Each additional asset will take ~2x the display size in memory.</p> + <p>Number of assets that can exist at once in RAM.<br>Each asset will take ~5x the display size in memory.</p> </div> - <input class="my-auto rounded-input" name="max_cache_assets" type="number" /> + <input class="my-auto rounded-input" name="max_cache_assets" type="number" step="0.01" /> </div> </fieldset> - <input class="rounded-btn ml-auto" type="submit" value="Save Settings" /> + <input id="settings-submit" class="rounded-btn ml-auto" type="submit" value="Save Settings" /> </form> </div> </main> |
