-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd428ac
commit 5971964
Showing
8 changed files
with
105 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,7 +171,42 @@ | |
</div> | ||
<div class="right-cont"> | ||
<div class="gif-cont"> | ||
<img src="../img/how-to-use.gif " class="how-to-use-gif"> | ||
<img src="../img/how-to-use.gif " class="how-to-use-gif" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="heading-cont"> | ||
<p class="heading">Examples</p> | ||
</div> | ||
<div class="heading-cont"> | ||
<p class="subtitle">Analyzing Material Structure Using Algorithms</p> | ||
</div> | ||
<div class="show-button-cont"> | ||
<button class="show-button" id="show-button"></button> | ||
<label | ||
for="show-button" | ||
class="show-button-arrow" | ||
id="show-button-arrow" | ||
>^</label | ||
> | ||
</div> | ||
<div class="gifs-cont"> | ||
<div class="methods-gifs-cont" id="methods-gifs-cont"> | ||
<div class="method-cont"> | ||
<img class="method-gif" src="../img/von Neumann.gif" /> | ||
<p>von Neumann</p> | ||
</div> | ||
<div class="method-cont"> | ||
<img class="method-gif" src="../img/Probability Circle.gif" /> | ||
<p>Probability Circle</p> | ||
</div> | ||
<div class="method-cont"> | ||
<img class="method-gif" src="../img/Probability Ellipse.gif" /> | ||
<p>Probability Ellipse</p> | ||
</div> | ||
<div class="method-cont"> | ||
<img class="method-gif" src="../img/Moore.gif" /> | ||
<p>Moore</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
@@ -183,28 +218,27 @@ | |
MatViz3D | ||
</a> | ||
<p> | ||
Department of Mathematical Modeling and Intelligent Computing in Engineering (MMI), NTU "KhPI", st. 2 | ||
Kyrpychova | ||
Ave., c. Kharkiv, Ukraine, 61002 | ||
</p> | ||
<p> | ||
[email protected] | ||
Department of Mathematical Modeling and Intelligent Computing in | ||
Engineering (MMI), NTU "KhPI", st. 2 Kyrpychova Ave., c. Kharkiv, | ||
Ukraine, 61002 | ||
</p> | ||
<p>[email protected]</p> | ||
</div> | ||
</div> | ||
<div class="right-footer-cont"> | ||
<div class="footer-links mr-5"> | ||
<a href="https://web.kpi.kharkov.ua/dpm/uk/istoriya-kafedri/"> | ||
About the Department | ||
</a> | ||
<a href="#"> | ||
Team | ||
</a> | ||
<a href="https://web.kpi.kharkov.ua/dpm/uk/kontaktna-informatsiya-kafedri/"> | ||
<a href="#"> Team </a> | ||
<a | ||
href="https://web.kpi.kharkov.ua/dpm/uk/kontaktna-informatsiya-kafedri/" | ||
> | ||
Contact | ||
</a> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
<script src="../js/show-button.js"></script> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"); | ||
} | ||
}); |