index.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <td><button class='btn'>+</button></td>
  55. </tr>
  56. </tbody>
  57. </table>
  58. <div id="checks">
  59. <label><input type='checkbox' class='check'><span class='description'></span><br/></label>
  60. </div>
  61. <div id="radios">
  62. <label><input type='radio' class='radio'><span class='description'></span><br/></label>
  63. </div>
  64. <strong>Use $s variable for accessing data in DOM</strong>
  65. <pre id='state' style='background-color: lightgray;'>
  66. 2 seconds timeout
  67. </pre>
  68. <script src="nb.js"></script>
  69. <script src="index.js"></script>
  70. </body>
  71. </html>