-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntroduction.html
41 lines (31 loc) · 1.5 KB
/
Introduction.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
<html>
<head>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="extends.css">
</head>
<body class="w3-light-blue">
<div class="w3-light-green w3-bar w3-leftbar w3-container w3-border-green w3-padding">
<button class="w3-button w3-teal w3-xlarge w3-right" onclick="w3_open()">☰</button>
<h1><b>Simple Harmonic Motion - Introduction</b></h1>
</div>
<br>
<!--p>ตรงนี้<p-->
<div class="w3-container w3-animate-opacity">
<div class="w3-panel w3-leftbar w3-border-blue">
การเคลื่อนที่แบบฮาร์โมนิกอย่างง่าย (Simple harmonic motion - SHM) เป็นการเคลื่อนที่อีกแบบหนึ่ง การกระจัดของวัตถุซึ่งมีการเคลื่อนที่แบบนี้จะวัดจากตำแหน่งเดิมของวัตถุ เมื่อไม่ถูกแรงภายนอกใดๆ มากระทำ เรียกตำแหน่งนี้ว่า แนวสมดุล
</div>
</div>
<script>
function w3_open() {
/*document.getElementById("mySidebar").style.width = "100%";
document.getElementById("mySidebar").style.display = "block";*/
window.location = "Selection.html";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
w3_close();
</script>
</script>
</body>
</html>