index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <style>
  11. .cell{
  12. width:40px;
  13. height: 40px;
  14. border:1px solid black;
  15. text-align:center;
  16. cursor:pointer;
  17. }
  18. .row:nth-child(even){
  19. background: #eeeeee;
  20. }
  21. </style>
  22. <table id = "table1">
  23. </table>
  24. <br><br><br>
  25. <input type="number" name="" id="inp1" placeholder="Number 1">
  26. <input type="number" name="" id="inp2" placeholder="Number 2">
  27. <input type="text" id="result" placeholder="Sum" readonly>
  28. <button id="calcBtn">Calc</button>
  29. <script>
  30. //ТАБЛИЦА УМНОЖЕНИЯ
  31. // let table = document.querySelector('#table1')
  32. // for(let i=1; i<10;i++){
  33. // let tr = document.createElement('tr')
  34. // tr.classList.add("row")
  35. // table.append(tr)
  36. // for(let j = 1;j<10;j++){
  37. // let td = document.createElement('td')
  38. // td.innerText = i*j
  39. // tr.append(td)
  40. // td.classList.add("cell")
  41. // }
  42. // }
  43. //ПОДСВЕТИТЬ ЯЧЕЙКУ
  44. // let table = document.querySelector('#table1')
  45. // for(let i=1; i<10;i++){
  46. // let tr = document.createElement('tr')
  47. // tr.classList.add("row")
  48. // table.append(tr)
  49. // for(let j = 1;j<10;j++){
  50. // let td = document.createElement('td')
  51. // td.innerText = i*j
  52. // tr.append(td)
  53. // td.classList.add("cell")
  54. // td.onmouseover = ()=>td.style.backgroundColor = "#CECECE"
  55. // td.onmouseleave = ()=>td.style.backgroundColor = ""
  56. // }
  57. // }
  58. //ПОДСВЕТИТЬ СТРОКУ И СТОЛБЕЦ
  59. function lightUp(event){
  60. let cellIdx = this.cellIndex
  61. let rows = this.parentElement.parentElement.children
  62. this.parentElement.style.backgroundColor = "#CECECE"
  63. for(let row of rows){
  64. row.children[cellIdx].style.backgroundColor = "#CECECE"
  65. }
  66. }
  67. function lightDown(event){
  68. let cellIdx = this.cellIndex
  69. let rows = this.parentElement.parentElement.children
  70. this.parentElement.style.backgroundColor = ""
  71. for(let row of rows){
  72. row.children[cellIdx].style.backgroundColor = ""
  73. }
  74. }
  75. let table = document.querySelector('#table1')
  76. for(let i=1; i<10;i++){
  77. let tr = document.createElement('tr')
  78. tr.classList.add("row")
  79. table.append(tr)
  80. for(let j = 1;j<10;j++){
  81. let td = document.createElement('td')
  82. td.innerText = i*j
  83. tr.append(td)
  84. td.classList.add("cell")
  85. td.addEventListener('mouseover',lightUp)
  86. td.addEventListener('mouseleave',lightDown)
  87. }
  88. }
  89. //CALC
  90. let inp1 = document.querySelector("#inp1")
  91. let inp2 = document.querySelector("#inp2")
  92. calcBtn.onclick = function(){
  93. alert((+inp1.value) + (+inp2.value))
  94. }
  95. //CALC LIVE
  96. function calc() {
  97. result.value = (+inp1.value) + (+inp2.value)
  98. }
  99. inp1.oninput = calc
  100. inp2.oninput = calc
  101. </script>
  102. </body>
  103. </html>