-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
105 lines (105 loc) · 4.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@300&family=Lato:wght@100&display=swap" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rochambeau</title>
<link href = "base.css" rel = "stylesheet">
<link rel="icon" href= "Rochambeau-icon.png">
<script src="script.js" defer></script>
</head>
<body>
<div class = "content-container">
<div class = "header">
<h1 class="rochambeau-title">ROCHAMBEAU</h1>
<h1 class="rockpaperscissors-title active">ROCK PAPER SCISSORS</h1>
<div class = 'scroll active'><span></span><h5>Scroll</h5></div>
</div>
<div class = 'result'></div>
<div class = "visuals">
<img src = "Planet-2.png" class = "planet-2" id="planet-2">
<img src = "Planet-1.png" class = "planet-1">
<img src = "FarBackground.png" class = "far-background">
<img src = "Background.png" class = "background">
<img src = "Midground.png" class = "midground">
<div class = 'hover-rocks'>
<img src = "Rock.png" class = "rock">
<img src = "Paper.png" class = "paper">
<img src = "Scissors.png" class = "scissors">
</div>
<img src = "Foreground.png" class = "foreground">
<img src = "Player.png" class = "player">
</div>
<div class = "player-area-container">
<div class = "player-area">
<div class = "player-sign-image">
<img src = "circle.svg" class = "rock-sign">
<img src = "rectangle.svg" class = "paper-sign">
<img src = "x.svg" class = "scissors-sign">
</div>
<div class="spinner-box">
<button class="play-button" title="play" onclick="beginPlay()">
PLAY
</button>
<div class = "ellipse1"></div>
<div class = "ellipse2"></div>
<div class = "ellipse3"></div>
<div class="solar-system">
<div class="earth-orbit orbit">
<div class="planet earth"></div>
<div class="venus-orbit orbit">
<div class="planet venus"></div>
<div class="mercury-orbit orbit">
<div class="planet mercury"></div>
</div>
</div>
</div>
</div>
</div>
<div class="countdown">
</div>
<div class="score-container">
<div class = "computer-score-container">
<div class = "computer-score">
0
</div>
<div class = "computer-score-label">
THEY
</div>
</div>
<div class = "player-score-container">
<div class = "player-score">
0
</div>
<div class = "player-score-label">
YOU
</div>
</div>
</div>
<div class = "player-choice">
<div class = "choice-row-top">
<button class="choice-rock" title="rock"
onclick="getSelected(1)">
ROCK
</button>
<button class="choice-paper" title="paper"
onclick="getSelected(2)">
PAPER
</button>
</div>
<div class = "choice-row-bottom">
<button class="choice-scissors" title="scissors"
onclick="getSelected(3)">
SCISSORS
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>