|
9 | 9 | <meta property="og:type" content="website"> |
10 | 10 | <meta property="og:url" content="https://roadfinder.went.tf/"> |
11 | 11 | <meta property="og:image" content="https://roadfinder.went.tf/preview.png"> |
| 12 | + <meta name="description" content="Browser tool that highlights undiscovered roads on the Forza Horizon map by replacing their grey colour with magenta in real time via screen capture."> |
12 | 13 | <link rel="canonical" href="https://roadfinder.went.tf/"> |
13 | 14 | <link rel="icon" type="image/png" href="../favicon.png"> |
14 | 15 | <link rel="manifest" href="./manifest.json"> |
|
173 | 174 | color: #888; |
174 | 175 | font-size: 15px; |
175 | 176 | } |
| 177 | + |
| 178 | + #placeholder-hint { |
| 179 | + font-size: 12px; |
| 180 | + color: #777; |
| 181 | + } |
| 182 | + |
| 183 | + .skip-link { |
| 184 | + position: absolute; |
| 185 | + top: -40px; |
| 186 | + left: 0; |
| 187 | + background: #333; |
| 188 | + color: #eee; |
| 189 | + padding: 4px 10px; |
| 190 | + border-radius: 0 0 4px 0; |
| 191 | + font-size: 13px; |
| 192 | + z-index: 100; |
| 193 | + text-decoration: none; |
| 194 | + } |
| 195 | + .skip-link:focus { top: 0; } |
176 | 196 | </style> |
177 | 197 | </head> |
178 | 198 | <body> |
| 199 | +<a class="skip-link" href="#canvas-wrap">Skip to main content</a> |
179 | 200 |
|
180 | 201 | <div id="controls"> |
181 | 202 | <button id="startBtn">Share Screen</button> |
|
195 | 216 | <div class="ctrl-group"> |
196 | 217 | <label for="fps">FPS</label> |
197 | 218 | <input type="range" id="fps" min="0.1" max="30" step="0.1" value="1"> |
198 | | - <input type="number" id="fpsNum" min="0.1" max="30" step="0.1" value="1"> |
| 219 | + <input type="number" id="fpsNum" min="0.1" max="30" step="0.1" value="1" aria-label="FPS value"> |
199 | 220 | </div> |
200 | 221 |
|
201 | 222 | <div class="ctrl-group"> |
202 | 223 | <label for="tolerance">Tolerance</label> |
203 | 224 | <input type="range" id="tolerance" min="0" max="40" step="1" value="5"> |
204 | | - <input type="number" id="tolNum" min="0" max="40" step="1" value="5"> |
| 225 | + <input type="number" id="tolNum" min="0" max="40" step="1" value="5" aria-label="Tolerance value"> |
205 | 226 | </div> |
206 | 227 |
|
207 | 228 | <div class="ctrl-group"> |
|
221 | 242 | </div> |
222 | 243 | </div> |
223 | 244 |
|
224 | | -<div id="canvas-wrap"> |
| 245 | +<main id="canvas-wrap"> |
225 | 246 | <div id="placeholder"> |
226 | 247 | <div>Click <strong>Share Screen</strong> and select your Forza window.</div> |
227 | | - <div id="placeholder-hint" style="font-size:12px;color:#666"></div> |
| 248 | + <div id="placeholder-hint"></div> |
228 | 249 | </div> |
229 | 250 | <canvas id="canvas" style="display:none"></canvas> |
230 | | -</div> |
| 251 | +</main> |
231 | 252 |
|
232 | 253 | <script type="module" src="./main.js"></script> |
233 | 254 | </body> |
|
0 commit comments