-
Notifications
You must be signed in to change notification settings - Fork 0
/
20.html
34 lines (29 loc) · 998 Bytes
/
20.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
<!DOCTYPE html>
<html >
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<title>Kvíz</title>
<link rel="stylesheet" href="css/style.css">
<script src="jquery/jquery-1.12.4.js"></script>
<script src="jquery/jquery-ui.js"></script>
</head>
<body>
<h2> </h2>
<img src="20.jpg" style="max-height: 200px;"><br>
<button onclick="redirect()">Nagyon menő</button><br>
<button onclick="redirect()">Most induljon a banzáj</button><br>
<button onclick="redirect()">Még rophatjátok párszor</button><br>
<script>
$( document.getElementsByClassName("no1") ).click(function() {
$( ".no1" ).effect( "shake" );
});
$( document.getElementsByClassName("no2") ).click(function() {
$( ".no2" ).effect( "shake" );
});
function redirect() {
location.replace("veg.html")
}
</script>
</body>
</html>