blinker / firefox.plugin / data / home / start.html @ master
History | View | Annotate | Download (1.024 KB)
| 1 | 76dd22bd | KevinTaron | <html>
|
|---|---|---|---|
| 2 | <head>
|
||
| 3 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
||
| 4 | <script src="../lib/jquery/jquery-2.2.4.min.js"></script> |
||
| 5 | <link rel=stylesheet href="../tutorial/tutorial.css"> |
||
| 6 | <link rel=stylesheet href="html-gaze-attr.css"> |
||
| 7 | <title>Blickbrowser - GAZE-Element Settings</title> |
||
| 8 | </head>
|
||
| 9 | <body>
|
||
| 10 | <div id="content" class="tutorial"> |
||
| 11 | |||
| 12 | <div class="container inputcont"> |
||
| 13 | |||
| 14 | <h1>Start</h1> |
||
| 15 | |||
| 16 | <ol class="start"> |
||
| 17 | <li>
|
||
| 18 | <p>Enter your website addresse here:
|
||
| 19 | </p>
|
||
| 20 | <input type="url" class="gaze-keyboard" id="keyboard" placeholder="Enter your URL here" data-gaze="true" data-gaze-type="text" data-gaze-model="onscreen"> |
||
| 21 | </li>
|
||
| 22 | </ol>
|
||
| 23 | |||
| 24 | <button class="start" data-gaze="true" data-gaze-type="action" data-gaze-model="onscreen">Start</button> |
||
| 25 | |||
| 26 | </div>
|
||
| 27 | |||
| 28 | </div>
|
||
| 29 | <script>
|
||
| 30 | jQuery(document).ready(function($) {
|
||
| 31 | jQuery('.start').click(function(event) {
|
||
| 32 | var url = "http://";
|
||
| 33 | url += jQuery('.gaze-keyboard').val();
|
||
| 34 | window.location.href = url;
|
||
| 35 | });
|
||
| 36 | });
|
||
| 37 | </script>
|
||
| 38 | </body>
|
||
| 39 | </html> |