Browse Source

08 blue task fix

pocu46 4 years ago
parent
commit
335b0312ba
6 changed files with 90 additions and 20 deletions
  1. 11 0
      07/index.html
  2. 0 0
      07/script.js
  3. 1 1
      08/index.html
  4. 36 19
      08/script.js
  5. BIN
      Volume/1@3x.png
  6. 42 0
      Volume/index.html

+ 11 - 0
07/index.html

@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Document</title>
+</head>
+<body>
+    <script src="./script.js"></script>
+</body>
+</html>

+ 0 - 0
07/script.js


+ 1 - 1
08/index.html

@@ -3,7 +3,7 @@
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Document</title>
+    <title>Functions 2</title>
 </head>
 <body>
     <script src="./script.js"></script>

+ 36 - 19
08/script.js

@@ -52,7 +52,7 @@ function sort(array, key, increase = true) {
 
 //-----------------------------------------------------------array map----------------------------------------------------------------------
 
-let arrayMap = ["1", {}, null, undefined, "500", 700];
+let arrayMap = ["1", {}, null, undefined, "500", 700]; 
 
 let arrayMap2 = arrayMap.map((item) => {
     if (typeof item == "string") return isNaN(parseInt(item, 10)) ? item : parseInt(item, 10);
@@ -100,7 +100,7 @@ let someObject = {
 function map(obj) {
     let temp = {};
     for (let i in obj) {
-        temp[i + '_'] = i + '$';
+        temp[i + '_'] = i + '$';   
     }
     return temp;
 }
@@ -109,16 +109,6 @@ console.log(map(someObject));
 
 //-----------------------------------------------------------recursion--------------------------------------------------------------------
 
-// a1 + function (a1, inc) {
-//     return a1 + inc
-// }
-
-// function arithmeticProgression(num, increment, rows) {
-//     for (let i = 0; i < rows; i++) {
-//         return num + arithmeticProgression(num + increment)
-//     }
-// }
-
 function arithmeticProgression(num, increment, rows) {
     if (rows <= 1) {
         return num;
@@ -128,23 +118,50 @@ function arithmeticProgression(num, increment, rows) {
 
 console.log(arithmeticProgression(1, 4, 8));
 
+//-----------------------------------------------------------HTML Tree--------------------------------------------------------------------
+
+var someTree = {
+    tagName: "table", //html tag
+    children: [ //вложенные тэги
+        {
+            tagName: "tr",
+            children: [{
+                    tagName: "td",
+                    text: "some text",
+                },
+                {
+                    tagName: "td",
+                    text: "some text 2",
+                }
+            ]
+        }
+    ],
+    attrs: {
+        border: 1,
+    },
+}
 
 function construct(obj) {
-    let node = obj.tagName;
-    if ("attr" in obj) {
+    let node = document.createElement(obj.tagName);
+    if ("attrs" in obj) {
         for (let attrName in obj.attrs) {
-            node.setAttribute(attrName, obj.attrs[attrsName])
+            node.setAttribute(attrName, obj.attrs[attrName])
         }
     }
 
-    if("subtags" in obj) {
-        for(let child in obj.subtags) {
-            construct(obj.subtags[child]);
+    if ("children" in obj) {
+        for (let child in obj.children) {
+            node.append(construct(obj.children[child]));
         }
     }
 
-    if("text" in obj) {
+    if ("text" in obj) {
         node.innerText = obj.text;
     }
+    return node;
 }
 
+
+document.body.append(construct(someTree));
+
+console.log(construct(someTree));

BIN
Volume/1@3x.png


+ 42 - 0
Volume/index.html

@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width" />
+    <title>Другой тайтл ПРИВЕТ 17й</title>
+    <style>
+    </style>
+</head>
+
+<body>
+    <h1 id='title'></h1>
+    <div id='container1'></div>
+    <div id='container2'></div>
+    <script>
+        function Control(el, (value=0, max=100, step=1, minAngle=0, maxAngle=0)={}) {
+            const img = document.createElement('img')
+            img.src = '1@3x.png'
+            el.append(img)
+
+            const ratio = (maxAngle - minAngle) / (max - min)
+
+            const value2Deg = v => ratio * (value - min) + minAngle
+
+            const setValue = newValue => {
+                value = newValue;
+                if(newValue >= max || newValue <= min) {
+                    return
+                }
+                img.style.transform = 'rotate(deg)';
+            }
+            setValue(value);
+            img.onclick = () => {
+                setValue(value + step)
+            }
+        }
+
+        const volumeControl = new Control(container1) {value: 50}
+        const balanceControl = new Control(container2) {maxAngle: 180, minAngle: 0, min: -50, max: 50}
+    </script>
+</body>