script.js 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. // ----------------------------------------------Таблица умножения------------------------------------------------------------------
  2. let task1 = document.createElement("div");
  3. document.body.append(task1);
  4. task1.innerText = "Таблица умножения";
  5. task1.style = "border: 2px solid; display: flex; justifyContent: center; alignItems: center; textAlign: center; margin: 15px 0"
  6. let table = document.createElement("table");
  7. table.setAttribute("border", "1");
  8. document.body.append(table);
  9. for (let y = 0; y < 10; y++) {
  10. let tr = document.createElement("tr");
  11. table.append(tr);
  12. for (let x = 0; x < 10; x++) {
  13. let td = document.createElement("td");
  14. tr.append(td);
  15. let temp = x * y;
  16. if (x === 0) temp = y;
  17. else if (y === 0) temp = x;
  18. td.innerText = temp;
  19. // td.innerHTML(x * y);
  20. td.style.width = "50px";
  21. td.style.height = "25px";
  22. td.style.textAlign = "center";
  23. // -----------------Подсветить ячейку--------------------
  24. td.onmousemove = function () {
  25. this.style.background = "yellow";
  26. }
  27. td.onmouseout = function () {
  28. this.style.background = "none";
  29. }
  30. }
  31. }
  32. // ____Тестовый вариант, чтобы разобраться_____
  33. // document.write("<table width=60% border=1 cellspacing=0 cellpadding=4>")
  34. // // document.write("<table border=1 >")
  35. // for (i = 0; i < 10; i++) {
  36. // if(i === 0) i=1
  37. // document.write("<tr>");
  38. // for (j = 0; j < 10; j++) {
  39. // if(i === 0) ++j
  40. // document.write("<td>" + (j * i) + "</td>");
  41. // }
  42. // document.write("</tr>");
  43. // }
  44. // document.write("</table>")
  45. // ---------------------------------------------Подсветить строку и столбец------------------------------------------------------------------
  46. let task2 = document.createElement("div");
  47. document.body.append(task2);
  48. task2.innerText = "Подсветить строку и столбец";
  49. task2.style = "border: 2px solid; display: flex; justifyContent: center; alignItems: center; textAlign: center; margin: 15px 0"
  50. function light() {
  51. let table = document.createElement("table");
  52. table.setAttribute("border", "1");
  53. document.body.append(table);
  54. for (let y = 0; y < 10; y++) {
  55. let tr = document.createElement("tr");
  56. table.append(tr);
  57. for (let x = 0; x < 10; x++) {
  58. let td = document.createElement("td");
  59. tr.append(td);
  60. let temp = x * y;
  61. if (x === 0) temp = y;
  62. else if (y === 0) temp = x;
  63. td.innerText = temp;
  64. // td.innerHTML(x * y);
  65. td.style.width = "50px";
  66. td.style.height = "25px";
  67. td.style.textAlign = "center";
  68. td.onmousemove = function () {
  69. for (let item of this.parentElement.children) {
  70. item.style.background = "yellowgreen";
  71. }
  72. for (let item of this.parentElement.parentElement.children) {
  73. for (let item2 of item.children) {
  74. if (item2.cellIndex === this.cellIndex) {
  75. item2.style.background = "yellowgreen";
  76. }
  77. }
  78. }
  79. }
  80. td.onmouseout = function () {
  81. for (let item of this.parentElement.children) {
  82. item.style.background = "none";
  83. }
  84. for (let item of this.parentElement.parentElement.children) {
  85. for (let item2 of item.children) {
  86. if (item2.cellIndex === this.cellIndex) {
  87. item2.style.background = "none";
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }
  94. }
  95. light();
  96. // _______________________Выбор ячейки_____________________________
  97. let task3 = document.createElement("div");
  98. document.body.append(task3);
  99. task3.innerText = "Выбор ячейки (сделал для практики)";
  100. task3.style = "border: 2px solid; display: flex; justifyContent: center; alignItems: center; textAlign: center; margin: 15px 0"
  101. table = document.createElement("table");
  102. table.setAttribute("border", "1");
  103. document.body.append(table);
  104. for (let y = 0; y < 10; y++) {
  105. let tr = document.createElement("tr");
  106. table.append(tr);
  107. for (let x = 0; x < 10; x++) {
  108. let td = document.createElement("td");
  109. tr.append(td);
  110. let temp = x * y;
  111. if (x === 0) temp = y;
  112. else if (y === 0) temp = x;
  113. td.innerText = temp;
  114. td.style.width = "50px";
  115. td.style.height = "25px";
  116. td.style.textAlign = "center";
  117. let flag = false;
  118. td.onclick = function () {
  119. if (!flag) {
  120. this.style.background = "blue";
  121. this.style.color = "#d1e819"
  122. } else {
  123. this.style.background = "none";
  124. this.style.color = "black"
  125. }
  126. flag = !flag;
  127. }
  128. }
  129. }
  130. // ----------------------------------------------Calc------------------------------------------------------------------
  131. let task4 = document.createElement("div");
  132. document.body.append(task4);
  133. task4.innerText = "Calc";
  134. task4.style = "border: 2px solid; display: flex; justifyContent: center; alignItems: center; textAlign: center; margin: 15px 0"
  135. let num1 = document.createElement("input");
  136. let num2 = document.createElement("input");
  137. let result = document.createElement("div");
  138. let calc = document.createElement("button");
  139. let check = document.createElement("input");
  140. num1.setAttribute("id", "1");
  141. num1.setAttribute("type", "number");
  142. num1.setAttribute("placeholder", "0");
  143. num2.setAttribute("id", "2");
  144. num2.setAttribute("type", "number");
  145. num2.setAttribute("placeholder", "0");
  146. result.setAttribute("id", "res");
  147. calc.setAttribute("id", "button");
  148. check.setAttribute("id", "checkbox");
  149. check.setAttribute("type", "checkbox");
  150. document.body.append(num1);
  151. document.body.append(num2);
  152. document.body.append(result);
  153. document.body.append(calc);
  154. document.body.append(check);
  155. calc.style = "height: 50px; width: 150px; background: #6290d0";
  156. calc.innerHTML = "Calculate"
  157. result.style = "height: 50px; width: 150px; background: #fff; border: 2px solid";
  158. calc.onclick = () => {
  159. result.innerText = num1.value + num2.value;
  160. }