js_08_dom.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. //
  2. var titleStyle = `background-color: lightgray;`;
  3. var globalTableNumber = 1;
  4. document.body.style.textAlign = "center";
  5. // --------------Построение таблицы с присвоением ей номера---------------
  6. function createTable() {
  7. let tableNumber = globalTableNumber++;
  8. let di = document.createElement("div");
  9. di.style.display = "inline-block";
  10. di.style.margin = "10px";
  11. document.body.appendChild(di);
  12. var myTable = document.createElement("table");
  13. myTable.setAttribute("id", "myTableID" + tableNumber);
  14. myTable.setAttribute("border", "1");
  15. myTable.setAttribute("align", "center");
  16. myTable.style = `font-weight: 700; font-family: Arial, Helvetica, sans-serif;`;
  17. di.appendChild(myTable);
  18. let multiTable = [];
  19. for (yAxis = 0; yAxis < 10; yAxis++) {
  20. multiTable[yAxis] = [];
  21. var trLine = document.createElement("tr");
  22. trLine.setAttribute("height", "25px");
  23. myTable.appendChild(trLine);
  24. if (yAxis === 0) trLine.style = titleStyle;
  25. for (xAxis = 0; xAxis < 10; xAxis++) {
  26. multiTable[yAxis][xAxis] = xAxis === 0 ? yAxis : (yAxis || 1) * xAxis;
  27. var tdCell = document.createElement("td");
  28. tdCell.setAttribute("align", "center");
  29. tdCell.setAttribute("width", "25px");
  30. let className = xAxis * yAxis === 0 ? "cellTitle" : "cell";
  31. className += tableNumber;
  32. tdCell.setAttribute("class", className);
  33. if (xAxis === 0) tdCell.style = titleStyle;
  34. trLine.appendChild(tdCell);
  35. tdCell.innerHTML = `${multiTable[yAxis][xAxis]}`;
  36. }
  37. }
  38. }
  39. // -------------- Подсветить ячейку в таблице номер №---------------
  40. function lightCell(tableNumber = "1") {
  41. lightsOff(tableNumber);
  42. let cells = document.querySelectorAll(".cellTitle" + tableNumber);
  43. for (let node of cells) {
  44. node.onmousemove = function () {
  45. this.style.background = "limegreen";
  46. };
  47. node.onmouseout = function () {
  48. this.style.background = "lightgray";
  49. };
  50. }
  51. cells = document.querySelectorAll(".cell" + tableNumber);
  52. for (let node of cells) {
  53. node.onmousemove = function () {
  54. this.style.background = "skyblue";
  55. };
  56. node.onmouseout = function () {
  57. this.removeAttribute("style");
  58. };
  59. }
  60. }
  61. // --------------Подсветить строку и столбец в таблице №---------------
  62. function lightCross(tableNumber = "1") {
  63. lightsOff(tableNumber);
  64. let cells = document.querySelectorAll(".cell" + tableNumber);
  65. for (let node of cells) {
  66. var cellNumber;
  67. node.onmousemove = function () {
  68. cellNumber = this.cellIndex;
  69. let element = this;
  70. // --- можно так добираться (шаг за шагом)---
  71. while (element.previousElementSibling) {
  72. element = element.previousElementSibling;
  73. }
  74. do {
  75. element.style.background = ~element.getAttribute("class").indexOf("cellTitle") ? "limegreen" : "peru";
  76. if (element.cellIndex === cellNumber) {
  77. element.style.background = "pink";
  78. }
  79. element = element.nextElementSibling;
  80. } while (element);
  81. // --- а можно так ---
  82. element = this;
  83. element = element.parentElement.parentElement;
  84. for (let rows of element.children) {
  85. if (rows.rowIndex !== this.parentElement.rowIndex) {
  86. rows.children[cellNumber].style.background = "peru";
  87. }
  88. }
  89. element.children[0].children[cellNumber].style.background = "limegreen";
  90. };
  91. node.onmouseout = function () {
  92. let cellNumber = this.cellIndex;
  93. let element = this;
  94. element = element.parentElement;
  95. for (let cells of element.children) {
  96. cells.style.background = "#fff";
  97. }
  98. element.children[0].style.background = "lightgray";
  99. element = element.parentElement;
  100. for (let rows of element.children) {
  101. rows.children[cellNumber].style.background = "#fff";
  102. }
  103. element.children[0].children[cellNumber].style.background = "lightgray";
  104. };
  105. }
  106. }
  107. // --------------Подсветить строку и столбец в таблице № (версия 2)---------------
  108. function lightCrossV2(tableNumber = "1") {
  109. lightsOff(tableNumber);
  110. let tableID = "myTableID" + tableNumber;
  111. let el = document.getElementById(tableID);
  112. for (let tr of el.children) {
  113. for (let td of tr.children) {
  114. td.onmousemove = function () {
  115. if (this.parentElement.rowIndex) {
  116. td.parentElement.style.background = "peru";
  117. }
  118. for (let tr1 of el.children) {
  119. if (this.cellIndex) {
  120. tr1.children[this.cellIndex].style.background = "peru";
  121. }
  122. }
  123. this.style.background = "pink";
  124. el.children[0].children[this.cellIndex].style.background = "limegreen";
  125. this.parentElement.children[0].style.background = "limegreen";
  126. };
  127. td.onmouseout = function () {
  128. if (this.parentElement.rowIndex) {
  129. td.parentElement.removeAttribute("style");
  130. }
  131. for (let tr1 of el.children) {
  132. if (this.cellIndex) {
  133. tr1.children[this.cellIndex].removeAttribute("style");
  134. } else el.children[0].children[0].style.background = "lightgray";
  135. }
  136. this.parentElement.children[0].style.background = "lightgray";
  137. };
  138. }
  139. }
  140. }
  141. // --------------Подсветить строку и столбец в таблице № (версия 3)---------------
  142. function lightCrossV3(tableNumber = "1") {
  143. lightsOff(tableNumber);
  144. let tableID = "myTableID" + tableNumber;
  145. let el = document.getElementById(tableID);
  146. for (let tr of el.children) {
  147. for (let td of tr.children) {
  148. td.setAttribute("prevbkcolor", "magenta"); // когда писал этот метод еще не был знаком с замыканием
  149. // и мне показалась идея хранить что-то в DOMе вполне нормальной идеей ))
  150. td.setAttribute("style", "");
  151. td.onmouseover = td.onmouseout = function () {
  152. let sell = this.cellIndex;
  153. function change(el_) {
  154. let temp = el_.style.background || "";
  155. el_.style.background = el_.getAttribute("prevbkcolor");
  156. el_.setAttribute("prevbkcolor", temp);
  157. }
  158. for (i of this.parentElement.children) change(i);
  159. for (i of this.parentElement.parentElement.children) change(i.children[sell]);
  160. };
  161. }
  162. }
  163. }
  164. // --------------Убрать любые подсветки из таблицы №---------------
  165. function lightsOff(tableNumber = "1") {
  166. let tableID = "myTableID" + tableNumber;
  167. let el = document.getElementById(tableID);
  168. for (let tr of el.children) {
  169. tr.onmousemove = tr.onmouseout = tr.onmouseover = null;
  170. for (let td of tr.children) {
  171. td.onmousemove = td.onmouseout = td.onmouseover = null;
  172. }
  173. }
  174. }
  175. //-------------------------------------------------------------
  176. //---------Включить кнопку в группе, остальные выключить-------
  177. function buttonToggle(btnId, btnGroup) {
  178. for (i of document.querySelectorAll("." + btnGroup)) {
  179. i.style.color = "";
  180. i.removeAttribute("disabled");
  181. }
  182. document.getElementById(btnId).style.color = "red";
  183. document.getElementById(btnId).setAttribute("disabled", "disabled");
  184. }
  185. // ---------------------- Запуск на выполнение всех задач --------------------
  186. createTable();
  187. let p = document.createElement("p");
  188. p.style = "text-align: center; margin: 10px;";
  189. document.body.appendChild(p);
  190. let title1 = document.createElement("div");
  191. title1.innerHTML = "Кнопки для верхней таблицы<br>";
  192. p.appendChild(title1);
  193. let btn1 = document.createElement("button");
  194. btn1.setAttribute("id", "btn1");
  195. btn1.setAttribute("class", "btnGroup1");
  196. btn1.innerHTML = `Подсветка Cell`;
  197. btn1.style.margin = "5px";
  198. btn1.onclick = () => {
  199. buttonToggle("btn1", "btnGroup1");
  200. lightCell("1");
  201. };
  202. p.appendChild(btn1);
  203. let btn2 = document.createElement("button");
  204. btn2.setAttribute("id", "btn2");
  205. btn2.setAttribute("class", "btnGroup1");
  206. btn2.style.margin = "5px";
  207. btn2.innerHTML = `Подсветка Cross.ver2`;
  208. btn2.onclick = () => {
  209. buttonToggle("btn2", "btnGroup1");
  210. lightCrossV2("1");
  211. };
  212. p.appendChild(btn2);
  213. p.appendChild(document.createElement("br"));
  214. let btn3 = document.createElement("button");
  215. btn3.setAttribute("id", "btn3");
  216. btn3.setAttribute("class", "btnGroup1");
  217. btn3.style.margin = "5px";
  218. btn3.innerHTML = `Подсветка OFF`;
  219. btn3.onclick = () => {
  220. buttonToggle("btn3", "btnGroup1");
  221. lightsOff("1");
  222. };
  223. p.appendChild(btn3);
  224. let btn4 = document.createElement("button");
  225. btn4.setAttribute("id", "btn4");
  226. btn4.setAttribute("class", "btnGroup1");
  227. btn4.style.margin = "5px";
  228. btn4.innerHTML = `Подсветка Cross.ver3`;
  229. btn4.onclick = () => {
  230. buttonToggle("btn4", "btnGroup1");
  231. lightCrossV3("1"); //++++++++++++++++++++++++++++++++++++++++++++++++++++
  232. };
  233. p.appendChild(btn4);
  234. btn3.onclick();
  235. createTable();
  236. createTable();
  237. lightCell("2");
  238. lightCross("3");
  239. //------------------------Калькулятор---------------------------
  240. let divCalc = document.createElement("div");
  241. divCalc.style = "text-align: center; margin: 20px;";
  242. document.body.appendChild(divCalc);
  243. let question = document.createElement("span");
  244. question.innerHTML = "Сколько лет Вам исполнилось или исполнится в этом году?</br>";
  245. divCalc.appendChild(question);
  246. let inp = document.createElement("input");
  247. inp.setAttribute("type", "number");
  248. inp.setAttribute("id", "inpId");
  249. inp.setAttribute("value", "30");
  250. divCalc.appendChild(inp);
  251. let buttonArrea = document.createElement("div");
  252. buttonArrea.style = "text-align: center; margin: 10px;";
  253. divCalc.appendChild(buttonArrea);
  254. let check = document.createElement("input");
  255. check.setAttribute("type", "checkbox");
  256. check.setAttribute("id", "checkId");
  257. check.setAttribute("checked", "checked");
  258. buttonArrea.appendChild(check);
  259. let checkTitle = document.createElement("span");
  260. checkTitle.innerText = " <== живой калькулятор. Или нажми, чтобы получить результат ==> ";
  261. buttonArrea.appendChild(checkTitle);
  262. let btnAlive = document.createElement("button");
  263. btnAlive.setAttribute("id", "btnAliveId");
  264. btnAlive.innerText = "Нажми";
  265. btnAlive.style = "text-align: center;";
  266. buttonArrea.appendChild(btnAlive);
  267. let answerArea = document.createElement("div");
  268. answerArea.style = "text-align: center;";
  269. divCalc.appendChild(answerArea);
  270. let answerTitle = document.createElement("span");
  271. answerTitle.innerHTML = "Год Вашего рождения: ";
  272. answerArea.appendChild(answerTitle);
  273. let currYear = new Date().getFullYear();
  274. let answer = document.createElement("span");
  275. answer.setAttribute("id", "answerId");
  276. answer.innerText = currYear - inp.value;
  277. answerArea.appendChild(answer);
  278. const letsCulc = function () {
  279. answerId.innerText = currYear - inpId.value;
  280. };
  281. btnAliveId.onclick = letsCulc;
  282. const checkFunc = function () {
  283. if (checkId.checked) {
  284. btnAliveId.setAttribute("disabled", "disabled");
  285. inpId.oninput = letsCulc;
  286. letsCulc();
  287. } else {
  288. btnAliveId.removeAttribute("disabled");
  289. inpId.oninput = null;
  290. }
  291. };
  292. checkId.onclick = checkFunc;
  293. checkFunc();