I am not getting the on-hover dates but it is rendered to the page on inspecting I suspect it may be due to the responsive problem of CSS, or class breakage. How to resolve?
CSS code:
JavaScript
x
30
30
1
/* Adding for slick tool tip on hover */
2
.hover_slick {
3
position: relative;
4
display: inline-block;
5
border-bottom: 1px dotted black;
6
}
7
8
.hover_slick .hover_slicktext {
9
visibility: hidden;
10
width: 120px;
11
background-color: black;
12
color: #fff;
13
text-align: center;
14
/* font-size: 15px; */
15
border-radius: 6px;
16
padding: 5px 0;
17
18
/* Position the tooltip */
19
/* position: absolute; */
20
margin-top: -20px;
21
z-index: 1;
22
bottom: 100%;
23
left: 50%;
24
margin-left: -60px;
25
}
26
27
.hover_slick:hover .hover_slicktext {
28
visibility: visible;
29
}
30
JS code
JavaScript
1
10
10
1
function slider_config() {
2
// Array conversion from the doc element
3
var dateList = [document.querySelectorAll('.photo-date-info')].map(x => x.textContent);
4
// console.log(dateList);
5
// Loop through its value and index since it is array
6
dateList.forEach((value,index)=>{
7
$("#hover_slicktext"+index).html(value);
8
});
9
10
DIV
JavaScript
1
2
1
div += "></i><a href='"+photo+"' download><i class='fas fa-download' style ='float: right;padding-top: 7px;color: black;'></i></a><img style='object-fit: contain;height:400px' src='"+photo+"' data-caption='As on : "+photo_date+"'><h4>As on : <span class="photo-date-info">" + photo_date + "</span></h4><h5>"+p_desc+"</h5></center></div>";
2
Advertisement
Answer
This is due to the relative position of the hover. Reducing the relative position and reducing the font size will solve the issue.
JavaScript
1
25
25
1
.hover_slick {
2
/* position: relative; */
3
display: inline-block;
4
/* border-bottom: 1px dotted black; */
5
}
6
7
.hover_slick .hover_slicktext {
8
visibility: hidden;
9
width: 120px;
10
background-color: black;
11
color: #fff;
12
text-align: center;
13
font-size: 20px;
14
border-radius: 6px;
15
padding: 5px 0;
16
17
/* Position the tooltip */
18
/* position: absolute; */
19
margin-top: -20px;
20
z-index: 1;
21
bottom: 100%;
22
left: 50%;
23
margin-left: -60px;
24
}
25