html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="loading-screen"><h2>Eid Special!!</h2>
<img id="loaderimg" src="https://i.ibb.co/ccWbK3P2/Aladdin-PNG-Image.png" alt="Aladdin-PNG-Image">
<br> <h6>✴️ Aladdin The Carpet Runner ✴️</h6></div>
<div class="loader">🌟</div>
<div class="loader2">🌟</div>
<div class="loader3">🌟</div>
<div class="loader4">🌟</div>
<div class="loader5">🌟</div>
<div id="menu-screen">
<button class="menubtn" id="play">Play</button>
<button class="menubtn" id="info">Info</button>
</div>
<div id="game-container">
<button id="infoB">?</button>
<canvas id="c"></canvas>
<div id="score">Score: 0</div>
<div id="game-over">
<button id="restart"><center>Restart</center></button>
</div>
css
css
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
*{
margin: 0;
overflow:hidden;
padding: 0;
box-sizing: border-box;
}
body{
background-color:#000000;
text-align: center;
font-family: Arial, sans-serif;
overflow: hidden;
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
touch-action: none;
}
#loading-screen, #menu-screen, #game-container{
position: absolute;
width: 100vw;
height:100vh;
display: flex;
flex-direction: column;
align-items:center;
justify-content:center;
js
js
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
window.onload =()=>{
const canvas = document.getElementById("c"),
ctx=canvas.getContext("2d"),
gameOS =document.getElementById("game-over"),
restartB=document.getElementById("restart"),
loadingS =document.getElementById("loading-screen"),
menuS =document.getElementById("menu-screen"),
buttonP =document.getElementById("play"),
infoB=document.getElementById("infoB"),
infoB2 =document.getElementById("info"),
gameC=document.getElementById("game-container"),
margin =5;
let scale,gameRunning =false,score=0;
let lantern, groundHeight,stars=[],obstacles=[],clouds =[], twinklingStars = [];
function updateScale(){
canvas.width =window.innerWidth-2 *margin;
canvas.height= window.innerHeight-2 *margin;
scale=Math.min(canvas.width/800,canvas.height/600);
lantern={
x: margin+20,
y: canvas.height/2,
width:150 *scale,
height:100 *scale,
velocity:0,
gravity:0.5 *scale,
BROWSER
Console
Run