Hover help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hover help

When the user hovers over the image and ONLY the image I want the orange divs to expand and display some content which are in p and h2 tags. Can someone edit my code and help me out? https://code.sololearn.com/WEf9pU89b0oy/?ref=app

20th Mar 2021, 2:58 AM
okurpants
okurpants - avatar
4 Answers
+ 3
with your actual html structure, that's not possible to do what you expect by only css... however, you could achieve equivalent behavior by javascript: https://code.sololearn.com/W2hUBhtGqYYH/?ref=app ... with some modification on css selectors (replacing :hover by a custom class and using the next sibling operator (+) just after. with javascript, we define onmouseover and onmouseout to images to set/remove the custom class on parent node. that's the easiest fix to make work the expected behavior. another way would be to rethink your html structure to be able to target the .content elements from the img:hover (but they should be at same level for next sibling operator to work -- have same parent node)... then you could avoid javascript ;P
20th Mar 2021, 4:39 AM
visph
visph - avatar
+ 2
Thank you soooo much! Was really helpful!
20th Mar 2021, 5:45 AM
okurpants
okurpants - avatar
0
visph can you elaborate a little on how each line works in the js part if you don't mind?
29th Mar 2021, 11:59 AM
okurpants
okurpants - avatar
0
for each image element inside .imgBx class elements got as array like from querySelectorAll('.imgBx img'), we define onmouseover and onmouseout event handler... in each function, we add or remove the 'over' class...
29th Mar 2021, 12:30 PM
visph
visph - avatar