-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (46 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/johnnys-path.js"></script>
<script src="js/functions.js"></script>
</head>
<body>
<h1 data-lang="ro">Modele atomice</h1>
<h1 data-lang="en">Atomic models</h1>
<div align="center">
<button class="teal active" data-lang="ro" data-hide=".screen.rutherford" data-show=".screen.thompson">Modelul Thompson</button>
<button class="teal" data-lang="ro" data-hide=".screen.thompson" data-show=".screen.rutherford">Modelul Rutherford</button>
<button class="teal active" data-lang="en" data-hide=".screen.rutherford" data-show=".screen.thompson">Thompson's Model</button>
<button class="teal" data-lang="en" data-hide=".screen.thompson" data-show=".screen.rutherford">Rutherford's Model</button>
<br>
<button data-l="ro" class="red active">RO</button>
<button data-l="en" class="red">EN</button>
<p>Copyright © 2014 Ionică Bizău - <span data-lang="ro">Sub licență MIT</span><span data-lang="en">Under MIT License</span>
<span data-lang="ro">Codul sursă este disponibil <a href="http://github.com/IonicaBizau/atomic-models" target="_blank">aici</a>.</span>
<span data-lang="en">The project is open source and hosted <a href="http://github.com/IonicaBizau/atomic-models" target="_blank">here</a>.</span>
</p>
</div>
<div class="screen thompson">
<h1 data-lang="ro">Modelul Thompson</h1>
<h1 data-lang="en">Thompson's Model</h1>
<p data-lang="ro">Sarcina electrică pozitivă a atomului este uniform distribuită în tot atomul.</p>
<div class="source"></div>
<div class="gold">
</div>
</div>
<div class="screen rutherford hide">
<h1 data-lang="ro">Modelul Rutherford</h1>
<h1 data-lang="en">Rutherford's Model</h1>
<p data-lang="ro">Sarcina electrică pozitivă a atomului este concentrată într-un nucleu.</p>
<div class="source"></div>
<div class="gold">
<div class="n"></div>
</div>
</div>
</body>
</html>