I am having problems with my JavaScripts which is meant to make a tab gallery display. It hides the images when I choose another gallery, but I also have a presentation text -called “text-poze” and that is not hide when I am choosing another gallery , so the text from Album 1 will be seen when Album 2 is chosen. How can I Fix that?
JavaScript
x
63
63
1
function album() { // wrap code in IIFE to keep it from global scope
2
let links = document.querySelectorAll('a'); // grab all <a> tags that trigger the image gallery
3
let imageContainer = document.querySelector('.album1 '); // grab the div that will contain the images
4
let imagesCollection = document.querySelectorAll('.img-prezentare');
5
6
7
function displayImage(imgs, album) { // function to check the data-album attr and check against the button that was clicked
8
imgs.forEach((image) => {
9
if (image.dataset.album == album) {
10
//image.classList.remove('hide');
11
image.hidden = false;
12
} else {
13
//image.classList.add('hide');
14
image.hidden = true;
15
}
16
});
17
}
18
19
20
links.forEach((link) => { // loop through <a> tags and create click event on each
21
link.addEventListener('click', (e) => {
22
e.preventDefault();
23
24
console.log(link.textContent);
25
26
if (link.textContent == "album 1") {
27
console.log("album 1111111s");
28
}
29
30
switch (link.textContent) { // check name of link clicked
31
case "album 1": // link 1 text
32
33
displayImage(imagesCollection, 'album 1'); //display images from album 1
34
console.log("album 1111111s");
35
36
break;
37
case "album 2": // link 2 text
38
39
displayImage(imagesCollection, 'album 2'); //display images from album 2
40
41
break;
42
case "album 3": // link 3 text
43
44
displayImage(imagesCollection, 'album 3'); //display images from album 3
45
46
break;
47
48
case "all": // // link 4 text - display all images at once
49
50
imagesCollection.forEach((image) => {
51
image.classList.remove('hide');
52
});
53
54
break;
55
}
56
57
});
58
});
59
60
}
61
window.onload = function() {
62
album()
63
};
JavaScript
1
23
23
1
<div class="selector text-center justify-content-evenly">
2
<a href="#">album 1</a>
3
<a href="#">album 2</a>
4
<a href="#">album 3</a>
5
<a href="#">all</a>
6
</div>
7
8
<div class="row justify-content-evenly">
9
<div class="col-md-4 center album1">
10
<a href="adrbirouri.html"> <img class="img-prezentare" src="../ADR Birouri/View05.jpg" data-album="album 1"></a>
11
<div class="text-poze"> ADR Birouri </div>
12
</div>
13
14
<div class="col-md-4 center album1">
15
<a href="baiamare.html"><img class="img-prezentare" src="../Bloc Baia Mare/View05.jpg" data-album="album 1"></a>
16
<div class="text-poze"> Bloc Baia Mare</div>
17
</div>
18
19
<div class="col-md-4 center album1">
20
<a href="nisipari.html"><img class="img-prezentare" src="../Bloc Nisipari/View01.jpg" data-album="album 1"></a>
21
<div class="text-poze">Bloc Nisipari</div>
22
</div>
23
</div>
Advertisement
Answer
It seems your code is not doing what you expect and also not what you describe
I advice you to delegate and you likely wanted to do this:
JavaScript
1
12
12
1
window.addEventListener("DOMContentLoaded", () => {
2
const nav = document.querySelector(".selector")
3
const links = nav.querySelectorAll("a");
4
const albums = document.querySelectorAll(".album");
5
nav.addEventListener("click", e => {
6
const tgt = e.target.closest("a");
7
if (tgt) {
8
links.forEach(lnk => lnk.classList.toggle("active",lnk===tgt));
9
albums.forEach(album => album.hidden = ![album.id, "all"].includes(tgt.dataset.album));
10
}
11
})
12
});
JavaScript
1
4
1
.selector a {text-decoration: none }
2
.selector a.active {text-decoration: underline }
3
4
.album img { height: 100px;}
JavaScript
1
23
23
1
<div class="selector text-center justify-content-evenly">
2
<a href="#" data-album="album1" class="active">album 1</a>
3
<a href="#" data-album="album2">album 2</a>
4
<a href="#" data-album="album3">album 3</a>
5
<a href="#" data-album="all">all</a>
6
</div>
7
8
<div class="row justify-content-evenly">
9
<div class="col-md-4 center album" id="album1">
10
<a href="adrbirouri.html"> <img class="img-prezentare" src="https://www.wall-street.ro/image_thumbs/thumbs/734/7342c107fcfac43c575acfe686ece344-1063x560-00-86.jpg?v=1469023098"></a>
11
<div class="text-poze"> ADR Birouri </div>
12
</div>
13
14
<div class="col-md-4 center album" id="album2" hidden>
15
<a href="baiamare.html"><img class="img-prezentare" src="https://upload.wikimedia.org/wikipedia/commons/c/ce/Baia_Mare-_centru_istoric.jpg"></a>
16
<div class="text-poze"> Bloc Baia Mare</div>
17
</div>
18
19
<div class="col-md-4 center album" id="album3" hidden>
20
<a href="nisipari.html"><img class="img-prezentare" src="https://static.wikia.nocookie.net/genealogy/images/4/45/Scoala_Nisipari.jpg/revision/latest/scale-to-width-down/250?cb=20120804221616"></a>
21
<div class="text-poze">Bloc Nisipari</div>
22
</div>
23
</div>