Erwan Posted July 18, 2022 Posted July 18, 2022 Hey ! On my website (erwanlier.com) I have a gallery (work). Whenever someone hover on one of my project, I would like to change the image to something else, a gif. What code should I use ? Thanks
Solution Beyondspace Posted July 19, 2022 Solution Posted July 19, 2022 13 hours ago, Erwan said: Hey ! On my website (erwanlier.com) I have a gallery (work). Whenever someone hover on one of my project, I would like to change the image to something else, a gif. What code should I use ? Thanks You can try adding to Home > Design > Custom Css /*general setting for second image*/ section[data-section-id="5eedcddf0106b74183e0f58d"] .grid-item .grid-image:after { content:''; display: block; width: 100%; height: 100%; position: absolute; z-index: -1; background-repeat: no-repeat; background-size: contain; background-position: center center; } section[data-section-id="5eedcddf0106b74183e0f58d"] .grid-item:hover .grid-image-inner-wrapper { opacity: 0; } /*set url for each item*/ section[data-section-id="5eedcddf0106b74183e0f58d"] .grid-item:first-child .grid-image:after { background-image: url('https://images.unsplash.com/photo-1658140917228-129162d2a5b5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80'); } section[data-section-id="5eedcddf0106b74183e0f58d"] .grid-item:nth-child(2) .grid-image:after { background-image: url('https://images.unsplash.com/photo-1658140917228-129162d2a5b5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80'); } Let me know how it works on your site tuanphan 1 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
Beyondspace Posted July 19, 2022 Posted July 19, 2022 My testing BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
Erwan Posted July 19, 2022 Author Posted July 19, 2022 Absolutely perfect, this first-child/nth-child was exactly what I was looking for ! Thanks ! A whole new world of possibilites with these 😂 Beyondspace 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment