diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-07-05 09:06:16 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:12:47 +0100 |
commit | 71129b86103f205bdf9087a509c5d75cb2bf750d (patch) | |
tree | 05aeeb3d1b6f20d2bc9e5abfddb3fa2d89e375b2 /src/index.html | |
parent | 2a724e9d6f1d28df128d6dba5606d3641228c56e (diff) |
FUNCT Add fan speed container
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/index.html b/src/index.html index e727743..4541301 100644 --- a/src/index.html +++ b/src/index.html @@ -6,7 +6,19 @@ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body> - <div id="fan"> + <div class="top"> + <div class="icon"> + <img src="../images/HMI_HVAC_Fan_Icon.svg"> + </div> + <div class="fanSpeed"> + <div class="fanSpeedContainer"> + <input type="range" min="1" max="100" value="50"> + <progress value="50" max="100"></progress> + </div> + <div class="label"> + FAN SPEED + </div> + </div> </div> <div class="center"> |