gitignore
continuous-integration/drone/push Build is passing Details

ServeurDeTest
nathan boileau 2 years ago
parent 49aead805d
commit 860eff62ca

4
.gitignore vendored

@ -14,4 +14,6 @@
/node_modules/ /node_modules/
/.idea /.idea
*.db

@ -19,5 +19,5 @@ const fox = document.querySelector(".moving-fox");
window.addEventListener("scroll", () => { window.addEventListener("scroll", () => {
const scrollValue = window.scrollY - 700; const scrollValue = window.scrollY - 700;
fox.style.top = `${scrollValue / 1}px`; fox.style.top = `${scrollValue / 1}px`;
fox.style.opacity = `${window.scrollY / 700}`; fox.style.opacity = `${window.scrollY / 800}`;
}); });

@ -23,7 +23,7 @@
<link rel="stylesheet" href="../CSS/Presentation.css"> <link rel="stylesheet" href="../CSS/Presentation.css">
</head> </head>
<body> <body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top"> <nav class="navbar navbar-expand-lg navbar-dark fixed-top" style="border-bottom: 1px solid #fff;">
<div class="container-fluid mx-0"> <div class="container-fluid mx-0">
<div class="nav-item nav-link"> <div class="nav-item nav-link">
<a class="navbar-brand" href="index.php?action=goToHome">Home</a> <a class="navbar-brand" href="index.php?action=goToHome">Home</a>

Loading…
Cancel
Save