Merge branch 'films' into dev
This commit is contained in:
commit
a531309915
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
assets/img/backgroung dead trooper.jpg
Normal file
BIN
assets/img/backgroung dead trooper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 KiB |
BIN
assets/img/backgroung grogu.jpg
Normal file
BIN
assets/img/backgroung grogu.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 96 KiB |
BIN
assets/img/backgroung mando.jpg
Normal file
BIN
assets/img/backgroung mando.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 103 KiB |
BIN
assets/img/starry sky.jpg
Normal file
BIN
assets/img/starry sky.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 76 KiB |
@ -5,9 +5,11 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="styles/style.css">
|
||||
<script src="/scripts/films.js" defer type="module"></script>
|
||||
<title>Films</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id = "background-films">
|
||||
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
||||
<section class="sec-menu">
|
||||
<nav class="nav-menu">
|
||||
@ -18,6 +20,11 @@
|
||||
</ul>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
<div id = "Ep4">
|
||||
<div id="donnees"></div>
|
||||
<div id="vaisseaux"></div>
|
||||
<div id="planetes"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
9271
package-lock.json
generated
9271
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
5
scripts/films.js
Normal file
5
scripts/films.js
Normal file
@ -0,0 +1,5 @@
|
||||
const EPISODE4 = document.getElementById('Ep4');
|
||||
const DONNEES = document.getElementById('donnees');
|
||||
const VAISSEAUX = document.getElementById('vaisseaux');
|
||||
const PLANETES = document.getElementById('planetes');
|
||||
|
@ -29,3 +29,12 @@
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#background-films {
|
||||
width: 100%;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment : fixed;
|
||||
background-image: url("../assets/img/backgroung\ mando.jpg");
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user