mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-23 03:53:24 -05:00
144 lines
3.5 KiB
Markdown
144 lines
3.5 KiB
Markdown
---
|
|
id: 62a24190868ca51c0b6e83c7
|
|
title: Step 26
|
|
challengeType: 0
|
|
dashedName: step-26
|
|
---
|
|
|
|
# --description--
|
|
|
|
For now, hide your `#monsterStats` element with the `display` property. Do not change any of the other styling.
|
|
|
|
# --hints--
|
|
|
|
You should have a `#monsterStats` selector.
|
|
|
|
```js
|
|
const monsterStats = new __helpers.CSSHelp(document).getStyle('#monsterStats');
|
|
assert.exists(monsterStats);
|
|
```
|
|
|
|
Your `#monsterStats` selector should have a `display` property of `none`.
|
|
|
|
```js
|
|
const display = new __helpers.CSSHelp(document).getStyle('#monsterStats')?.getPropertyValue('display');
|
|
assert.equal(display, 'none');
|
|
```
|
|
|
|
Your `#monsterStats` selector should have a `border` of `1px solid #0a0a23`.
|
|
|
|
```js
|
|
const border = new __helpers.CSSHelp(document).getStyle('#monsterStats')?.getPropertyValue('border');
|
|
assert.equal(border, '1px solid rgb(10, 10, 35)');
|
|
```
|
|
|
|
Your `#monsterStats` selector should have `5px` of padding.
|
|
|
|
```js
|
|
const padding = new __helpers.CSSHelp(document).getStyle('#monsterStats')?.getPropertyValue('padding');
|
|
assert.equal(padding, '5px');
|
|
```
|
|
|
|
Your `#monsterStats` selector should have a `color` of `#ffffff`.
|
|
|
|
```js
|
|
const color = new __helpers.CSSHelp(document).getStyle('#monsterStats')?.getPropertyValue('color');
|
|
assert.equal(color, 'rgb(255, 255, 255)');
|
|
```
|
|
|
|
Your `#monsterStats` selector should have a `background-color` of `#c70d0d`.
|
|
|
|
```js
|
|
const background = new __helpers.CSSHelp(document).getStyle('#monsterStats')?.getPropertyValue('background-color');
|
|
assert.equal(background, 'rgb(199, 13, 13)');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="./styles.css">
|
|
<title>RPG - Dragon Repeller</title>
|
|
</head>
|
|
<body>
|
|
<div id="game">
|
|
<div id="stats">
|
|
<span class="stat">XP: <strong><span id="xpText">0</span></strong></span>
|
|
<span class="stat">Health: <strong><span id="healthText">100</span></strong></span>
|
|
<span class="stat">Gold: <strong><span id="goldText">50</span></strong></span>
|
|
</div>
|
|
<div id="controls">
|
|
<button id="button1">Go to store</button>
|
|
<button id="button2">Go to cave</button>
|
|
<button id="button3">Fight dragon</button>
|
|
</div>
|
|
<div id="monsterStats">
|
|
<span class="stat">Monster Name: <strong><span id="monsterName"></span></strong></span>
|
|
<span class="stat">Health: <strong><span id="monsterHealth"></span></strong></span>
|
|
</div>
|
|
<div id="text">
|
|
Welcome to Dragon Repeller. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
|
|
</div>
|
|
</div>
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
```css
|
|
body {
|
|
background-color: #0a0a23;
|
|
}
|
|
|
|
#text {
|
|
background-color: #0a0a23;
|
|
color: #ffffff;
|
|
padding: 10px;
|
|
}
|
|
|
|
#game {
|
|
max-width: 500px;
|
|
max-height: 400px;
|
|
background-color: #ffffff;
|
|
color: #ffffff;
|
|
margin: 30px auto 0px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#controls,
|
|
#stats {
|
|
border: 1px solid #0a0a23;
|
|
padding: 5px;
|
|
color: #0a0a23;
|
|
}
|
|
|
|
--fcc-editable-region--
|
|
#monsterStats {
|
|
|
|
border: 1px solid #0a0a23;
|
|
padding: 5px;
|
|
color: #ffffff;
|
|
background-color: #c70d0d;
|
|
}
|
|
--fcc-editable-region--
|
|
```
|
|
|
|
```js
|
|
let xp = 0;
|
|
let health = 100;
|
|
let gold = 50;
|
|
let currentWeaponIndex = 0;
|
|
let fighting;
|
|
let monsterHealth;
|
|
let inventory = ["stick"];
|
|
|
|
const button1 = document.querySelector("#button1");
|
|
const button2 = document.querySelector("#button2");
|
|
const button3 = document.querySelector("#button3");
|
|
```
|