-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossary.html
198 lines (170 loc) · 8.32 KB
/
glossary.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<style>
* {box-sizing: border-box}
/* Style the tab */
.tab {
float: left;
border: 1px solid #ccc;
background-color: #f1f1f1;
width: 30%;
height: 300px;
}
/* Style the buttons inside the tab */
.tab button {
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: 100%;
border: 1px solid ;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
font-size: 14px;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
text-color:blue;
}
/* Create an active/current "tab button" class */
.tab button.active {
background-color: yellow;
}
/* Style the tab content */
.tabcontent {
float: left;
padding: 0px 12px;
border: 1px solid #ccc;
background-color: yellow;
width: 70%;
border-left: none;
height: 300px;
}
</style>
</head>
<body>
<h2>Glossary</h2>
<div class="tab">
<button class="tablinks" onclick="openLetter(event, 'A')" id="defaultOpen">A </button>
<button class="tablinks" onclick="openLetter(event, 'C')">C</button>
<button class="tablinks" onclick="openLetter(event, 'E')">E</button>
<button class="tablinks" onclick="openLetter(event, 'F')">F</button>
<button class="tablinks" onclick="openLetter(event, 'G')">G</button>
<button class="tablinks" onclick="openLetter(event, 'I')">I</button>
<button class="tablinks" onclick="openLetter(event, 'L')">L</button>
<button class="tablinks" onclick="openLetter(event, 'M')">M</button>
<button class="tablinks" onclick="openLetter(event, 'N')">N </button>
<button class="tablinks" onclick="openLetter(event, 'P')">P</button>
<button class="tablinks" onclick="openLetter(event, 'Q')">Q</button>
<button class="tablinks" onclick="openLetter(event, 'R')">R</button>
<button class="tablinks" onclick="openLetter(event, 'S')">S</button>
<button class="tablinks" onclick="openLetter(event, 'T')">T</button>
<button class="tablinks" onclick="openLetter(event, 'U')">U</button>
<button class="tablinks" onclick="openLetter(event, 'V')">V</button>
<button class="tablinks" onclick="openLetter(event, 'W')">W</button>
<button class="tablinks" onclick="openLetter(event, 'X')">X</button>
</div>
<div id="A" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/7_Absorption.html">Absorption</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/15_Wave.html">Amplitude</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/5_Atom.html">Atom</a></p>
</div>
<div id="C" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/29_Cartesian system.html">Cartesian System</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/4_Colors of light.html">Colors of Light</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/35_CCDDetector.html">CCD Detextor</a></p>
</div>
<div id="E" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/13_EM_spectrum.html">Electromagnetic Spectrum</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/12_EM_radiation.html">Electromagnetic Radiation</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/5_Atom.html">Electron</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/20_Energy.html">Energy</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/6_Energy levels.html">Energy Level</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/8_Emission.html">Emission</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/6_Energy levels.html">Excited Level</a></p>
</div>
<div id="F" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/9_Luminescence_Fluorescence.html">Fluorescence</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/15_Wave.html">Frequency</a></p>
</div>
<div id="G" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/24_gamma.html">Gamma-rays</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/6_Energy levels.html">Ground level</a></p>
</div>
<div id="I" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/10_infrared light.html">IR light</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/28_Interferometer.html">Interferometer</a></p>
</div>
<div id="L" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/22_Laser.html">Laser</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/1_Light.html">Light</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/26_LIDAR.html">LIDAR</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/6_Energy levels.html">Lifetim</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/9_Luminescence_Fluorescence.html">Luminiscence</a></p>
</div>
<div id="M" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/17_Microwaves.html">Microwaves</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/32_Molecule.html">Molecule</a></p>
</div>
<div id="N" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/5_Atom.html">Neutron</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/5_Atom.html">Nucleus</a></p>
</div>
<div id="Q" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/2_Photon.html">Quantum</a></p>
</div>
<div id="R" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/19_Radiation.html">Radiation</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/16_Radio_waves.html">Radio Waves</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/23_Reflection.html">Reflection</a></p>
</div>
<div id="S" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/13_EM_spectrum.html">Spetrum</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/8_Emission.html">Spontaneous Emission</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/8_Emission.html">Simulated emission</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/27_Spectrometer.html">Spectometer</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/34_Scattering.html">Scattering</a></p>
</div>
<div id="T" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/31_Transmission.html">Transmission</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/25_Triangulation.html">Triangulation</a></p>
</div>
<div id="U" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/11_ultraviolet.html">UV Light</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/30_Units.html">Units</a></p>
</div>
<div id="V" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/18_visible_light.html">Visible Light</a></p>
</div>
<div id="W" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/15_Wave.html">Wave</a></p>
<p><a href="https://cvertan.github.io/physics4dh.github.io/15_Wave.html">Wavelength</a></p>
</div>
<div id="X" class="tabcontent">
<p><a href="https://cvertan.github.io/physics4dh.github.io/21_X-ray.html">X-rays</a></p>
</div>
<script>
function openLetter(evt, letterInitial) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(letterInitial).style.display = "block";
evt.currentTarget.className += " active";
}
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
</script>
</body>
</html>