-
Notifications
You must be signed in to change notification settings - Fork 0
/
8.html
34 lines (29 loc) · 1002 Bytes
/
8.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="8.jpg" style="max-height: 200px;"><br>
<button onclick="redirect()"><img src="8_1.jpg" style="max-height: 200px;"></button><br>
<button class="no1">Az előző a jó</button><br>
<button class="no2">Nem ez az, már mondtam.</button><br>
<script>
$( document.getElementsByClassName("no1") ).click(function() {
$( ".no1" ).effect( "shake" );
});
$( document.getElementsByClassName("no2") ).click(function() {
$( ".no2" ).effect( "shake" );
});
function redirect() {
location.replace("9.html")
}
</script>
</body>
</html>