-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (84 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="web-fonts-with-css/css/fontawesome-all.min.css">
<script src="lib/angular/angular.min.js"></script>
<script src="lib/angular/angular-route.min.js"></script>
<script src="lib/angular/angular-animate.min.js"></script>
<script src="controller/app.js"></script>
<script src="controller/controller.js"></script>
<title>Playtation 3</title>
<style media="screen">
.gameimg{
width: 90px;
position: relative;
margin-top: 20px;
margin-left: 0px;
}
.close{
position: absolute;
bottom: 0px;
color: red;
text-shadow: 0px 0px 3px red;
}
.card{
position: absolute;
max-width: 200px;
margin-top: 30px;
}
.card img{
height: 100px;
}
.card-body{
padding: 10px;
background-color: rgba(0, 0, 0, 0.9);
color: white;
}
.imgstore{
width: 40px;
}
.gamimg{
width: 150px;
height: 200px;
}
.galerieimg{
width: 100%;
height: 200px;
max-height: 200px;
}
.blurred{
filter: blur(8px);
-webkit-filter: blur(8px);
}
.bg-dark {
background-color:rgba(53, 59, 65, 0.4) !important;
height: 100px;
}
</style>
</head>
<body >
<audio>
<source src="audio/Menu.mp3">
<source src="audio/turn.wav">
<source src="audio/nin.wav">
<source src="audio/click.mp3">
<source src="audio/rrr.wav">
</audio>
<div ng-view></div>
<script type="text/javascript">
function myFunction() {
var element = document.getElementById("bodyc");
element.classList.add("blurred");
}
</script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.slim.min.js"></script>
<script type="text/javascript" src="js/sound-mouseover.js"></script>
</body>
</html>