123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>DOM: База</title>
- </head>
- <body>
- <style>
- table {
- border-collapse: collapse;
- }
- .podsvetka {
- background:lightgreen;
- }
- button{
- cursor: pointer;
- text-decoration: none;
- display: inline-block;
- color: white;
- padding: 10px 110px;
- margin: 30px;
- border-radius: 10px;
- font-family: 'Montserrat', sans-serif;
- text-transform: uppercase;
- letter-spacing: 2px;
- background-image: linear-gradient(to right, #9EEFE1 0%, #4830F0 51%, #9EEFE1 100%);
- background-size: 200% auto;
- box-shadow: 0 0 20px rgba(0, 0, 0, .1);
- transition: .5s;
- }
- button:hover {
- background-position: right center;
- }
- #num1, #num2{
- font-size: 16px;
- padding: 10px;
- display: block;
- width: 300px;
- border: none;
- border: 1px solid #ccc;
- margin-top: 30px;
- }
- #result{
- font-size: 16px;
- padding: 10px;
- display: inline-block;
- width: 300px;
- border: none;
- border: 1px solid #ccc;
- margin-top: 20px;
- }
-
- input:focus {
- outline: none;
- }
- </style>
-
- <input type="number" id="num1" placeholder="number 1">
- <input type="number" id="num2" placeholder="number 2">
- <button id="plus">Sum</button>
- <input type="number" id='result' oninput="calc()">
- <script>
- //------таблица умножения
- /*let table=document.createElement('table');
- table.border=1+'px';
- table.id='tab';
- for(let j=0;j<=10;j++){
- let tr=document.createElement('tr');
- if(j==0){
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- td.innerText=i;
- td.align='center';
- td.height=5+'%';
- td.width=5+'%';
- tr.append(td);
- }
- }else{
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- if(i==0){
- td.innerText=j;
- }else{
- td.innerText=i*j;
- }
- td.align='center';
- td.height=5+'%';
- td.width=5+'p%';
- tr.append(td);
- }
- }
-
- table.append(tr);
- }
- document.body.append(table);*/
- //------подсветка ячейки
- /*let table=document.createElement('table');
- table.border=1+'px';
- table.id='tab';
- table.style.borderColor='orange';
- for(let j=0;j<=10;j++){
- let tr=document.createElement('tr');
- if(j==0){
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- td.innerText=i;
- td.align='center';
- td.height=5+'%';
- td.width=5+'%';
- tr.append(td);
- td.onmouseover=function(){
- this.style.backgroundColor='pink';
- }
- td.onmouseout=function(){
- this.style.backgroundColor='yellow';
- }
- }
- }else{
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- if(i==0){
- td.innerText=j;
- }else{
- td.innerText=i*j;
- }
- td.onmouseover=function(){
- this.style.backgroundColor='pink';
- }
- td.onmouseout=function(){
- this.style.backgroundColor='yellow';
- }
- td.align='center';
- td.height=5+'%';
- td.width=5+'p%';
- tr.append(td);
- }
- }
- table.append(tr);
- }
- document.body.append(table);
- */
- //------подсветить строку и столбец
- /*let table=document.createElement('table');
- table.border=1+'px';
- table.id='tab';
- table.style.borderColor='orange';
- for(let j=0;j<=10;j++){
- let tr=document.createElement('tr');
- if(j==0){
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- td.innerText=i;
- td.align='center';
- td.height=5+'%';
- td.width=5+'%';
- tr.append(td);
- }
- }else{
- for(let i=0;i<=10;i++){
- let td=document.createElement('td');
- if(i==0){
- td.innerText=j;
- }else{
- td.innerText=i*j;
- }
- td.align='center';
- td.height=5+'%';
- td.width=5+'p%';
- tr.append(td);
-
- }
- }
- table.append(tr);
- }
- table.onmouseover=function(event){
- let target=event.target;
- target.style.backgroundColor='yellow';
- document.querySelectorAll(".podsvetka").forEach(
- item => item.classList.remove("podsvetka")
- );
- target.closest("tr").classList.add("podsvetka");
- target.closest("table").querySelectorAll("tr").forEach(
- row => row.cells[target.cellIndex].classList.add("podsvetka")
- );
- }
-
- table.onmouseout=function(event){
- let target=event.target;
- target.style.backgroundColor='';
- document.querySelectorAll(".podsvetka").forEach(
- item => item.classList.remove("podsvetka")
- );
- }
- document.body.append(table);*/
- //---------Calc
- /*plus.onclick=function(){
- result.value=(+num1.value)+(+num2.value);
- }*/
- //---------Calc Live
- function calc(){
- result.value=(+num1.value)+(+num2.value);
- }
- num1.oninput = calc;
- num2.oninput = calc;
-
- //button уже не нужен
- </script>
-
-
- </body>
- </html>
|