diff --git a/css/instructions.css b/css/instructions.css index 0482b2d..137d3a6 100644 --- a/css/instructions.css +++ b/css/instructions.css @@ -32,6 +32,7 @@ .main-cont { display: flex; flex-direction: row; + margin-bottom: 10vh; } .left-cont { @@ -92,8 +93,54 @@ font-size: large; font-weight: 400; } +.subtitle{ + font-size: 2vh; +} +.show-button-cont{ + display: flex; + justify-content: center; +} +.show-button{ + display: none; +} +.rotate{ + transform: rotate(180deg); +} +.show-button-arrow{ + font-size: 4vh; + font-weight: 300; + cursor:pointer; +} +.methods-gifs-cont{ + display: none; + width: 100%; + flex-direction: row; + justify-content: space-between; + flex-wrap: wrap; +} +.gifs-cont{ + margin-left: 3rem; + margin-right: 3rem; + display: flex; +} +.method-gif{ + width: 30vh; + height: auto; + margin-bottom:0.5vh ; +} +.method-cont{ + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; + font-size: 2vh; + margin-bottom:2vh ; +} @media (max-width: 1197px) { + .methods-gifs-cont{ + justify-content: center; + } .main-cont{ flex-direction: column; } diff --git a/html/instructions_en.html b/html/instructions_en.html index 8fcb8a4..7044b4f 100644 --- a/html/instructions_en.html +++ b/html/instructions_en.html @@ -171,7 +171,42 @@
- + +
+
+ +
+

Examples

+
+
+

Analyzing Material Structure Using Algorithms

+
+
+ + +
+
+
+
+ +

von Neumann

+
+
+ +

Probability Circle

+
+
+ +

Probability Ellipse

+
+
+ +

Moore

@@ -183,13 +218,11 @@ MatViz3D

- Department of Mathematical Modeling and Intelligent Computing in Engineering (MMI), NTU "KhPI", st. 2 - Kyrpychova - Ave., c. Kharkiv, Ukraine, 61002 -

-

- post.matviz3d@gmail.com + Department of Mathematical Modeling and Intelligent Computing in + Engineering (MMI), NTU "KhPI", st. 2 Kyrpychova Ave., c. Kharkiv, + Ukraine, 61002

+

post.matviz3d@gmail.com

+ diff --git a/img/Moore.gif b/img/Moore.gif new file mode 100644 index 0000000..8bd0990 Binary files /dev/null and b/img/Moore.gif differ diff --git a/img/Probability Circle.gif b/img/Probability Circle.gif new file mode 100644 index 0000000..a53a9d1 Binary files /dev/null and b/img/Probability Circle.gif differ diff --git a/img/Probability Ellipse.gif b/img/Probability Ellipse.gif new file mode 100644 index 0000000..845d8c0 Binary files /dev/null and b/img/Probability Ellipse.gif differ diff --git a/img/von Neumann.gif b/img/von Neumann.gif new file mode 100644 index 0000000..a932e39 Binary files /dev/null and b/img/von Neumann.gif differ diff --git a/js/.gitkeep b/js/.gitkeep deleted file mode 100644 index 8b13789..0000000 --- a/js/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/js/show-button.js b/js/show-button.js new file mode 100644 index 0000000..958d8a3 --- /dev/null +++ b/js/show-button.js @@ -0,0 +1,13 @@ +document.getElementById("show-button-arrow").addEventListener("click", function () { + const cont = document.getElementById("methods-gifs-cont"); + const button = document.getElementById("show-button-arrow"); + + // Проверяем видимость контейнера + if (cont.style.display === "none" || cont.style.display === "") { + cont.style.display = "flex"; + button.classList.add("rotate"); + } else { + cont.style.display = "none"; + button.classList.remove("rotate"); + } +});