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
/* Set the width of the sidebar to 250px and the left margin of the page content to 250px */
function openNav() {
document.getElementById("mySidebar").style.width = "180px";
document.getElementById("main").style.marginLeft = "180px";
}
/* Set the width of the sidebar to 0 and the left margin of the page content to 0 */
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft = "0";
}
// var slideIndex = 1;
// showDivs(slideIndex);
// function plusDivs(n) {
// showDivs(slideIndex += n);
// }
// function currentDiv(n) {
// showDivs(slideIndex = n);
// }
// function showDivs(n) {
// var i;
// var x = document.getElementsByClassName("mySlides");
// var dots = document.getElementsByClassName("demo");
// if (n > x.length) {slideIndex = 1}
// if (n < 1) {slideIndex = x.length}
// for (i = 0; i < x.length; i++) {
// x[i].style.display = "none";
// }
// for (i = 0; i < dots.length; i++) {
// dots[i].className = dots[i].className.replace(" w3-white", "");
// }
// x[slideIndex-1].style.display = "block";
// dots[slideIndex-1].className += " w3-white";
// }