-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (106 loc) · 4.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Бипризма Френеля</title>
<link href="node_modules/normalize.css/normalize.css" rel="stylesheet">
<link href="src/css/mainStyle.css" rel="stylesheet">
</head>
<body>
<header class="header">
<span class="simulation-name">
Бипризма Френеля
</span>
<nav class="nav">
<a href="">
<button id="sphere">
Сферическая волна
</button>
</a>
<a href="src/parallelBiprizm.html">
<button id="parallel">
Плоская волна
</button>
</a>
</nav>
<div class="made-by">
<span class="lesha">
Алексей Егошин, P3113
</span>
<span class="yarik">
Ярослав Кулинич aka Yarki, P3113
</span>
</div>
</header>
<main class="main">
<div class="pictures">
<div class="result-picture">
<canvas id="screen">
</canvas>
</div>
</div>
<form class="form">
<div class="a-block mok-grid">
<label class="prop-info" for="a-input">
Расстояние от источника до призмы
</label>
<input id="a-input" max="10" min="0.5" step="0.1" type="range">
<label for="a-input" class="value-label" id="a-label"></label>
</div>
<div class="b-block mok-grid">
<label class="prop-info" for="b-input">
Расстояние от призмы до экрана
</label>
<input id="b-input" max="3" min="0.5" step="0.1" type="range">
<label for="a-input" class="value-label" id="b-label"></label>
</div>
<div class="lambda-block mok-grid">
<label class="prop-info" for="lambda-input">
Длина волны
</label>
<input id="lambda-input" max="780" min="380" step="10" type="range">
<label for="lambda-input" class="value-label" id="lambda-label"></label>
</div>
<div class="teta-block mok-grid">
<label class="prop-info" for="teta-input">
Угол отклонения
</label>
<input id="teta-input" max="2" min="0.3" step="0.1" type="range">
<label for="teta-input" class="value-label" id="teta-label"></label>
</div>
<div class="n-block mok-grid">
<label class="prop-info" for="n-input">
Показатель преломления призмы
</label>
<input id="n-input" max="1.55" min="1.45" step="0.01" type="range">
<label for="n-input" class="value-label" id="n-label"></label>
</div>
</form>
<div class="button-group">
<button id="reset" type="button">
По умолчанию
</button>
</div>
<div class="biprizm-picture">
<canvas id="biprizm"></canvas>
</div>
</main>
<footer class="footer">
<span class="span-git">Follow us on GitHub:</span>
<div class="logos">
<a href="https://github.com/burevestnik-png" class="git-link" target="_blank">
<img src="resources/images/yarki.png" alt="Yarki" class="logo">
</a>
<span>&</span>
<a href="https://github.com/Roggired" class="git-link" target="_blank">
<img src="resources/images/lesha.png" alt="Lesha" class="logo mok-logo">
</a>
</div>
</footer>
<script src="node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="node_modules/paperjs-v0.12.11/dist/paper-core.min.js" type="text/javascript"></script>
<script src="node_modules/paperjs-v0.12.11/dist/paper-full.min.js" type="text/javascript"></script>
<script src="src/js/true-maths-sphere.js" type="text/javascript"></script>
<script src="src/js/biprizmLogicSphere.js" type="text/javascript"></script>
</body>
</html>