Skip to content

Commit 9c1962b

Browse files
authored
initial commit forked from https://github.com/hack-along/metatron
1 parent 89a9fe9 commit 9c1962b

8 files changed

+1025
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# metatron

index.html

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<meta property="og:image" content="http://maijagrudule.com/metatron/screen.png">
9+
<title>Metatron</title>
10+
<link rel="stylesheet" media="screen and (min-device-width: 801px)" href="style.css" />
11+
<link rel="stylesheet" media="screen and (max-device-width: 800px)" href="style_mobile.css" />
12+
13+
14+
</head>
15+
16+
<body>
17+
<div class="m-grid-container">
18+
<svg class="frame" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet" viewBox="1 1 36 40" id="svg">
19+
20+
<g id="shapes">
21+
<path class="path-hex " d="M 19,5 L 33,13 L 33,29 L 19,37 L 5,29 L 5,13 L 19,5 z " id="octagon" />
22+
<path class="path-hex " d="M 19,5 L 5,29 L 33,29 L 19,5 z " id="triange-up" />
23+
<path class="path-hex " d="M 5,13 L 19,37 L 33,13 L 5,13 z " id="triange-down" />
24+
<path class="path-hex inner" d="M 19,13 L 12,17 L 12,25 L 19,29 L 26,25 L 26,17 L 19,13 z " id="octagon-inner" />
25+
<path class="path-hex " d="M 12,25 L 19,5 L 26,25 L 12,25 z " id="path2894" />
26+
<path class="path-hex " d="M 19,37 L 12,17 L 26,17 L 19,37 z " id="path2896" />
27+
<path class="path-hex " d="M 5,13 L 33,29" id="line-6-3" />
28+
<path class="path-hex " d="M 5,29 L 33,13" id="line-6-2" />
29+
<path class="path-hex " d="M 19,5 L 19,37" id="line=-1-3" />
30+
<path class="path-hex " d="M 5,29 L 19,13 L 26,25 L 5,29 z " id="path2904" />
31+
<path class="path-hex " d="M 33,29 L 19,13 L 12,25 L 33,29 z " id="path2906" />
32+
<path class="path-hex " d="M 33,13 L 12,17 L 19,29 L 33,13 z " id="path2908" />
33+
<path class="path-hex " d="M 5,13 L 19,29 L 26,17 L 5,13 z " id="path2910" />
34+
35+
</g>
36+
</svg>
37+
<div id="c0" class="circle row-1 c-center c-1"></div>
38+
<div id="c1" class="circle row-2 c-right"></div>
39+
<div id="c2" class="circle row-6 c-right"></div>
40+
<div id="c3" class="circle row-7 c-center"></div>
41+
<div id="c4" class="circle row-6 c-left"></div>
42+
<div id="c5" class="circle row-2 c-left"></div>
43+
44+
<div id="c6" class="circle row-2 c-center"></div>
45+
<div id="c7" class="circle row-3 c-center-right"></div>
46+
<div id="c8" class="circle row-5 c-center-right" ></div>
47+
<div id="c9" class="circle row-6 c-center"></div>
48+
<div id="c10" class="circle row-5 c-center-left"></div>
49+
<div id="c11" class="circle row-3 c-center-left"></div>
50+
51+
<div id="c12" class="circle row-4 c-center"></div>
52+
53+
</div>
54+
55+
<script type="application/javascript" src="main.js"> </script>
56+
</body>
57+
58+
</html>

main.js

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
let Pattern = {
2+
coordinates: [
3+
"19,5", //0 top
4+
"33,13", //1 topRight
5+
"33,29", //2 bottomRight
6+
"19,37", //3 bottom
7+
"5,29", //4 bottomLeft
8+
"5,13", //5 topLeft
9+
//inner
10+
"19,13", //6 innerTop
11+
"26,17", //7 innerTopRight
12+
"26,25", //8 innerBottomRight
13+
"19,29", //9 innerBottom
14+
"12,25", //10 innerBottomLeft
15+
"12,17", //11 innerTopLeft
16+
//center
17+
"19, 21" //12 center
18+
],
19+
20+
plot: function(points) {
21+
let shape = [];
22+
for (const point of points) {
23+
shape.push(Pattern.coordinates[point]);
24+
}
25+
return shape.join("L");
26+
},
27+
draw: function(plot, closed) {
28+
let path = document.createElementNS("http://www.w3.org/2000/svg", "path");
29+
let closure = closed ? "z" : "";
30+
path.setAttribute("d", "M" + plot + closure);
31+
path.classList.add("animated");
32+
33+
return path;
34+
}
35+
};
36+
37+
window.addEventListener("DOMContentLoaded", function(event) {
38+
let svg = document.getElementById("svg");
39+
let center = document.getElementById("c12");
40+
center.addEventListener("mouseover", () => addCircle(), false);
41+
});
42+
43+
let lines = {
44+
c0: {
45+
shape: [0, 1, 2, 3, 4, 5],
46+
closed: true
47+
},
48+
c1: {
49+
shape: [1, 3, 5],
50+
closed: true
51+
},
52+
c2: {
53+
shape: [4, 0, 2],
54+
closed: true
55+
},
56+
c3: {
57+
shape: [3, 0],
58+
closed: true
59+
},
60+
c4: {
61+
shape: [4, 1],
62+
closed: true
63+
},
64+
c5: {
65+
shape: [5, 2],
66+
closed: true
67+
},
68+
c6: {
69+
shape: [6, 7, 8, 9, 10, 11],
70+
closed: true
71+
},
72+
c7: {
73+
shape: [7, 5, 7, 3],
74+
closed: true
75+
},
76+
c8: {
77+
shape: [8, 6, 10],
78+
closed: true
79+
},
80+
c9: {
81+
shape: [5, 2],
82+
closed: true
83+
},
84+
c10: {
85+
shape: [10, 0, 2],
86+
closed: false
87+
},
88+
c11: {
89+
shape: [11, 3, 11, 1],
90+
closed: false
91+
}
92+
};
93+
94+
for (let [line, value] of Object.entries(lines)) {
95+
let circle = document.getElementById(line);
96+
let path = Pattern.draw(Pattern.plot(value.shape), value.closed);
97+
svg.appendChild(path);
98+
setTimeout(function() {
99+
path.remove();
100+
}, 5000);
101+
circle.addEventListener("mouseover", () => addShape(value), false);
102+
circle.addEventListener("touchmove", () => addShape(value), false);
103+
}
104+
105+
function addShape(value) {
106+
let newPath = Pattern.draw(Pattern.plot(value.shape), value.closed);
107+
svg.appendChild(newPath);
108+
setTimeout(function() {
109+
newPath.remove();
110+
}, 5000);
111+
}
112+
113+
function addCircle() {
114+
let circle = document.createElementNS("http://www.w3.org/2000/svg", "circle");
115+
let circle2 = document.createElementNS(
116+
"http://www.w3.org/2000/svg",
117+
"circle"
118+
);
119+
circle.setAttribute("r", 15.7);
120+
circle.setAttribute("cx", 19);
121+
circle.setAttribute("cy", 21);
122+
circle.classList.add("path-circle");
123+
circle2.setAttribute("r", 16.5);
124+
circle2.setAttribute("cx", 19);
125+
circle2.setAttribute("cy", 21);
126+
circle2.classList.add("path-circle");
127+
circle2.classList.add("sm");
128+
svg.appendChild(circle);
129+
130+
setTimeout(function() {
131+
svg.appendChild(circle2);
132+
}, 500);
133+
134+
setTimeout(function() {
135+
circle.remove();
136+
}, 5000);
137+
setTimeout(function() {
138+
circle2.remove();
139+
}, 5500);
140+
}

0 commit comments

Comments
 (0)