This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (138 loc) · 5.39 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
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
<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sustainability made easy M152 Index.html</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fontawesome-all.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<video id="bg_video" autoplay="true" muted="" loop="loop">
<source src="video/oceans.mp4" type="video/mp4">
</video>
<div class="container">
<header>
<h1>Sustainability made easy</h1>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="carousel.html">Carousel</a>
</li>
<li class="nav-item">
<a class="nav-link" href="grid.html">Grid</a>
</li>
<li class="nav-item">
<a class="nav-link" href="jumbotron.html">Jumbotron</a>
</li>
<li class="nav-item">
<a class="nav-link" href="rechner.html">Rechner</a>
</li>
<li class="nav-item">
<a class="nav-link" href="geolocation.html">GeoLocation</a>
</li>
<!--<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</li>-->
</ul>
</div>
</nav>
</header>
<div class="container bubble-out2" onclick="console.log('bubble-out2')">
<div class="bubble-out1" onclick="console.log('bubble-out1')">
<h3 onclick="console.log('bubble-out')">bubble-out</h3>
</div>
</div>
<div>
<p>
Wendelin hallo 11:39 2021-11-22
</p>
</div>
<div class="video">
<iframe width="560" height="315" style="display: block; margin: 0 auto; max-width: 80%;" src="https://www.youtube.com/embed/YlcXOjcjSLs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<video controls width="560" height="315" style="display: block; margin: 0 auto; max-width: 80%;" autoplay poster="posterimage.jpg">
<source src="video/python.mp4" type="video/mp4">
</video>
</div>
<div class="audio">
<h4>Potcast xD</h4>
<audio id="podcast">
<source src="audio/jingle_part1.mp3" type="audio/mpeg">
<source src="audio/jingle_part1.ogg" type="audio/ogg">
<p>Dein Browser unterstützt die Audios nicht.</p>
</audio>
<button id="btn_play" class="btn btn-outline-primary">
<i class="fas fa-play-circle"></i>
</button>
<label for="slide_volume">Value</label>
<input id="slide_volume" type="range" min="0" max="100" step="5" value="100">
<span id="span_volume" class="badge badge-secondary text-wrap"></span>
</div>
<br>
<br>
<div class="div-key">
<ul id="key-list">
<li>KeyDown - Liste</li>
</ul>
</div>
<div class="container">
<div class="row">
<div class="click col">
0
</div>
<div class="click col">
0
</div>
<div class="click col">
0
</div>
<div class="click col">
0
</div>
</div>
</div>
<div class="button-textli">
<h1 id="textli">Anfangs Text</h1>
<button onclick="textli()">Click mich</button>
</div>
<div class="licht" style="margin: 10px 0px;">
<button onclick="lampe_ein()" style="height: 200px;">Turn on the light</button>
<img id="myImage" src="img/pic_bulboff.gif" alt="Lampe" style="width:100px">
<button onclick="lampe_aus()" style="height: 200px;">Turn off the light</button>
</div>
<div id="slider">
5%
<input id="slide" type="range" min="5" max="200" step="5" value="100">
200%
</div>
<p><span id="chosen">100</span>%</p>
<div id="picHolder">
<img id="pic" src="img/logo.png" alt="Logo">
</div>
<footer class="footer fixed-bottom bg-dark text-center">
<p>Hier steht das Impressum und so Zeugs</p>
<i class="fab fa-discord"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-java"></i>
<i class="fab fa-python"></i>
</footer>
</div>
<script src="js/lampensteuerung.js"></script>
<script src="js/togglefun.js"></script>
<script src="js/clickcounter.js"></script>
<script src="js/slider.js"></script>
<script src="js/keydown.js"></script>
<script src="js/mediaplayer.js"></script>
</body>
</html>