Skip to content
Snippets Groups Projects
Commit 4cbf1387 authored by Oumayma El Khattabi's avatar Oumayma El Khattabi
Browse files

apparition magique images

parent 5df47a64
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
document.getElementById("menu_icon").onclick = function() {
if (document.getElementById("navbar").style.display == "block"){
document.getElementById("navbar").style.display = "none";}
else{
document.getElementById("navbar").style.display = "block"
}
}
let slideIndex = 1;
showSlides(slideIndex);
// Next/previous controls
function plusSlides(n) {
showSlides(slideIndex += n);
showSlides((slideIndex += n));
}
// Thumbnail image controls
function currentSlide(n) {
showSlides(slideIndex = n);
showSlides((slideIndex = n));
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
if (n > slides.length) {
slideIndex = 1;
}
if (n < 1) {
slideIndex = slides.length;
}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
......
......@@ -519,4 +519,5 @@ p li {
.footer p {
font-size: min(12px, 2vw);
margin: 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment