0
car not
sd
2 Respuestas
+ 4
It might be easier to share it as per this guide:
https://sololearn.com/compiler-playground/Wek0V1MyIR2r/?ref=app
0
ها هي لعبة سيارة Dodge Charger Hellcat بسيطة باستخدام HTML, CSS و JavaScript:
```html
<!DOCTYPE html>
<html>
<head>
<title>Dodge Charger Hellcat Game</title>
<style>
body {
margin: 0;
overflow: hidden;
background-color: #333;
}
#gameContainer {
width: 100vw;
height: 100vh;
position: relative;
}
#car {
width: 100px;
height: 50px;
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-image: url('https://www.freeiconspng.com/uploads/car-png-30.png');
background-size: contain;
background-repeat: no-repeat;
}
.obstacle {
width: 50px;
height: 50px;
position: absolute;
background-color: red;
border-radius: 5px;
}
#score {
p