-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (137 loc) · 5.81 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
<!DOCTYPE html>
<html lang="en" class="is_dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QVMED0VBLB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QVMED0VBLB');
</script>
<title>Material Soul</title>
<link rel="icon" href="./Assets/icons/icon-1080x1080.png" type="image/x-icon">
<!--pwa things -->
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="./Assets/icons/icon-1080x1080.png">
<link rel="mask-icon" href="./Assets/icons/icon-1080x1080.png" />
<meta name="theme-color" content="#1E202A" />
<meta name="apple-mobile-web-app-status-bar" content="#1E202A">
<meta name="msapplication-TileColor" content="#1E202A" />
<meta name="theme-color" content="#1E202A" />
<meta name="title" content="Material Soul | Minimal Web Game" />
<meta name="description" content="A simple lightweight in-browser web app with colorful themes and installable game. Fun to Play." />
<meta name="keywords" content="Material, MaterialSoul, material, soul, github, free, amishranpariya, amish, ranpariya, game, pwa, dark ui, light ui, bricks-breaker, breaker, lightweight, minimal, opensource" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://amishranpariya.github.io/MaterialSoul/" />
<meta property="og:title" content="Material Soul | Minimal Web Game" />
<meta property="og:description" content="A simple lightweight in-browser web app with colorful themes and installable game. Fun to Play." />
<meta property="og:image" content="https://amishranpariya.github.io/MaterialSoul/Assets/icons/icon-512x512.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<!-- twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://amishranpariya.github.io/MaterialSoul/" />
<meta property="twitter:title" content="Material Soul | Minimal Web Game" />
<meta property="twitter:description" content="A simple lightweight in-browser web app with colorful themes and installable game. Fun to Play." />
<meta property="twitter:image" content="https://amishranpariya.github.io/MaterialSoul/Assets/icons/icon-512x512.png" />
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<script src="p5.js"></script>
<script src="p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="body">
<div id="loader"></div>
<div class="container">
<header>
<div class="left">
<div class="score-div">
<div>
<img src="./Assets/Img/Coin/coin_01.png" alt="coin-img" />
</div>
<p id="coin">0</p>
</div>
<div class="diamond-div">
<div>
<img src="./Assets/Img/Coin/tileRed_16.png" alt="diamond" />
</div>
<p id="diamond">0</p>
</div>
</div>
<div class="middle">
<i class="fas fa-heart fa-2x life"></i>
<i class="fas fa-heart fa-2x life"></i>
<i class="fas fa-heart fa-2x life"></i>
</div>
<div class="right">
<a class="btn" id="setting-btn"><i class="fas fa-cog fa-2x"></i>
</a>
</div>
</header>
<!-- intro model -->
<div class="hero intro ">
<div class="wrapper">
<h1>Material Soul</h1>
<div class="lower-hero">
<a class="btn play"><i class="fas fa-play fa-3x"></i>
</a>
<a href="https://github.com/AmishRanpariya">Made with ❤️ by Amish</a>
</div>
</div>
</div>
<!-- gameover model -->
<div class="hero gameover hide">
<div class="wrapper">
<h1>Game Over</h1>
<div class="lower-hero">
<div class="btn-panel">
<a class="btn restart"><i class="fas fa-sync-alt fa-3x"></i>
</a>
</div>
</div>
</div>
</div>
<!-- settings model -->
<div class="hero settings hide">
<div class="wrapper">
<h1>Settings</h1>
<div class="lower-hero">
<div class="theme-div">
<div class="theme-btn" id="d0004e"></div>
<div class="theme-btn" id="e66bba"></div>
<div class="theme-btn" id="d07499"></div>
<div class="theme-btn" id="ffb997"></div>
</div>
<div class="dark-mode-div">
<p>Dark Mode</p>
<div class="switch">
<input id="theme-type" type="checkbox" class="switch-input" />
<label for="theme-type" class="switch-label"></label>
</div>
</div>
<div class="btn-panel">
<a class="btn" href="https://github.com/AmishRanpariya/MaterialSoul"><i class="fas fa-info-circle fa-3x"></i>
</a>
<a class="btn restart"><i class="fas fa-sync-alt fa-3x"></i></a>
<a class="btn play"><i class="fas fa-play fa-3x"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
<script src="sketch.js"></script>
<script src="ship.js"></script>
<script src="gems.js"></script>
<script src="star.js"></script>
<script src="bullet.js"></script>
<script src="darkmode.js"></script>
</body>
</html>