-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (64 loc) · 1.99 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
<head> <title>naja....</title>
<meta charset="UTF-8">
</head>
<style>
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 20px 10px;
cursor: pointer;
}
.buttonred {background-color: #f44336;} /*Red*/
</style>
<html>
<body>
<h1 id="myIntroduction">Herr Doktoro Göbel - es dauert leider immer etwas, bis ein Commit ankommt und man muss immer ein neues Inkognito Fenster aufmachen, damit Changes ankommen.
DAs ist räudig. Lokal entwickeln geht schnellaaa!</h1>
<h2 id="derWechselndeText"></h2>
<button class="button buttonred"> Was findet ihr denn gut ihr großen Lamas da draußen?</button>
<p>
<img src=images/a.jpg>
<!-- <script>
document.querySelector('html').onclick = function() {
alert('Hey! Nicht so viel klicken!');
}
</script> -->
</body>
<script>
var myHeading = document.querySelector('#derWechselndeText');
var myButton = document.querySelector('button');
myHeading.onclick = function() {
alert('Hey! Nicht so viel klicken!');
}
function setUserName() {
var myName = prompt('Bitte geben Sie Ihren Namen ein.');
myHeading.textContent = 'Das ist richtig fett: ' + myName;
localStorage.setItem('name', myHeading.textContent);
}
myButton.onclick = function() {
setUserName();
}
if (localStorage.getItem('name'))
{ myHeading.textContent = localStorage.getItem('name')
;
} else {
myHeading.textContent = 'Alles ist ein bisschen scheiße......das must du ändern - geb schnell was ein, Doktor'}
</script>
<script>
var myImage = document.querySelector('img');
myImage.onclick = function() {
var mySrc = myImage.getAttribute('src');
if(mySrc === 'images/q.JPG') {
myImage.setAttribute ('src','images/a.jpg');
} else {
myImage.setAttribute ('src','images/q.JPG');
}
}
</script>
</html>