index.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Nano Bind Sample</title>
  7. <link href="index.css" rel="stylesheet" type="text/css" />
  8. </head>
  9. <body>
  10. <input type="text" id="text1">
  11. <p id='p1'></p>
  12. <p><input name="dzen" type="radio" value="nedzen"> Не дзен</p>
  13. <p><input name="dzen" type="radio" value="dzen"> Дзен</p>
  14. <p><input name="dzen" type="radio" value="pdzen" checked> Полный дзен</p>
  15. <p>
  16. <textarea id="textarea"></textarea>
  17. </p>
  18. <p>
  19. <select id="select">
  20. <option value="">--</option>
  21. <!--<option value="M" style="background-color: gray;">Male</option>-->
  22. <!--<option value="F">Female</option>-->
  23. <!--<option value="X">Xenomorph</option> -->
  24. </select>
  25. </p>
  26. <input type='checkbox' id='check1'><br/>
  27. <table>
  28. <tbody id="numberTable">
  29. <tr>
  30. <td>table template line 1</td>
  31. <td style='background-color: blue;'>table template line 1</td>
  32. </tr>
  33. <tr style='background-color: gray;'>
  34. <td>table template line 2</td>
  35. <td style='background-color: red;'>table template line 2</td>
  36. </tr>
  37. </tbody>
  38. </table>
  39. <table>
  40. <thead>
  41. <th> age</th>
  42. <th> married</th>
  43. <th> surname</th>
  44. <th> name</th>
  45. <th> note</th>
  46. </thead>
  47. <tbody id="hashTable">
  48. <tr>
  49. <td class='age'></td>
  50. <td><input type='checkbox' class='married'></td>
  51. <td class='surname'></td>
  52. <td class='name'></td>
  53. <td><textarea class='note'></textarea></td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. <div id="checks">
  58. <label><input type='checkbox' class='check'><span class='description'></span><br/></label>
  59. </div>
  60. <div id="radios">
  61. <label><input type='radio' class='radio'><span class='description'></span><br/></label>
  62. </div>
  63. <strong>Use $s variable for accessing data in DOM</strong>
  64. <pre id='state' style='background-color: lightgray;'>
  65. 2 seconds timeout
  66. </pre>
  67. <script src="nb.js"></script>
  68. <script src="index.js"></script>
  69. </body>
  70. </html>