-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemosPage.js
More file actions
40 lines (33 loc) · 1.4 KB
/
DemosPage.js
File metadata and controls
40 lines (33 loc) · 1.4 KB
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
class DemosPage extends HTMLElement { // Changed class name to DemosPage
connectedCallback() {
this.innerHTML = `
<div class="demos">
<img src="img/Vertical wave.png" alt="Vertical wave" class="background-content-demos">
<div class="demos-container">
<img src="img/wave.png" alt="" class="wave">
<h2 class="wave-line-h2">Demos</h2>
<img src="img/wave.png" alt="" class="wave miror">
</div>
<p>Demos and exhibition will be conducted at the IOLR/Shikmona facility between 9:00am and 12 on Wed, October 22.
</p>
<br>
<p>Listed demos are updated here.</p>
<br>
<ul>
<li>Underwater acoustic modem. Transmission of information package in the pool.</li>
<br>
<li>Self-made hydrophones and projectors.</li>
<br>
<li>Robotic floater for maine exploration. Demonstration in the pool.</li>
<br>
<li>The A-18 6m long autonomeuols undewater vehicle (AUV).</li>
<br>
<li>The SAAB workclass remotly operated vehicle (AUV).</li>
<br>
<li>Acoustic tags implented in fish and sharks for tracking.</li>
</ul>
</div>
`;
}
}
customElements.define('demos-page', DemosPage);