Aurora Posted October 23 Share Posted October 23 (edited) Hi! I have a summary block on my homepage to preview my blog. I'd like to add a hovering effect when hovering over the images to make the design a bit more responsive if that's the right word. Is this possible? https://www.kristinkuehn.com Pw: 2eRFn7gQ Many thanks! Edited October 23 by Aurora Link to comment
studiofounded Posted October 23 Share Posted October 23 Hi @Aurora, What effect would you like to add on hover? What type of summary block is it (grid, carousel, etc.)? Please share your site URL so we can take a look! — Hannah Studio Founded Aurora 1 A brand designer & strategist creating brands that bridge the gaps between artistry, strategy, and thoughtful consideration. Creator of Studio Founded, a digital resource library for purposeful business owners. 💻 Shop Squarespace Templates ✍️ Curated Business Resources 🥰 Complimentary Downloadables 🤍 Bespoke Branding & Websites Links in my posts may be affiliate links. Link to comment
Aurora Posted October 23 Author Share Posted October 23 7 minutes ago, studiofounded said: Hi @Aurora, What effect would you like to add on hover? What type of summary block is it (grid, carousel, etc.)? Please share your site URL so we can take a look! — Hannah Studio Founded Thanks Hannah, I added the site to the top post. I'm using a grid. As for the hovering effect, I think the image gets a little lighter usually, is that it? Link to comment
studiofounded Posted October 23 Share Posted October 23 Hi @Aurora There are a lot of possible hover effects (zoom, grayscale to color, rotate, etc.) To change the summary image brightness, you can paste this into the custom CSS panel and adjust the brightness value! .sqs-gallery-design-autogrid .summary-item:hover img{ filter: brightness(150%); } — Hannah Studio Founded Aurora 1 A brand designer & strategist creating brands that bridge the gaps between artistry, strategy, and thoughtful consideration. Creator of Studio Founded, a digital resource library for purposeful business owners. 💻 Shop Squarespace Templates ✍️ Curated Business Resources 🥰 Complimentary Downloadables 🤍 Bespoke Branding & Websites Links in my posts may be affiliate links. Link to comment
Aurora Posted October 23 Author Share Posted October 23 1 minute ago, studiofounded said: Hi @Aurora There are a lot of possible hover effects (zoom, grayscale to color, rotate, etc.) To change the summary image brightness, you can paste this into the custom CSS panel and adjust the brightness value! .sqs-gallery-design-autogrid .summary-item:hover img{ filter: brightness(150%); } — Hannah Studio Founded Thank you so much, Hannah. I think I was thinking of the Zoom effect. Would you mind sending me the code for that? Link to comment
Solution studiofounded Posted October 23 Solution Share Posted October 23 @Aurora Yes — you can try this! .sqs-gallery-design-autogrid .summary-item:hover img{ transform: scale(1.2); transition: 1s ease-in-out; } .sqs-gallery-design-autogrid .summary-item img{ transition: 1s ease-in-out; } A brand designer & strategist creating brands that bridge the gaps between artistry, strategy, and thoughtful consideration. Creator of Studio Founded, a digital resource library for purposeful business owners. 💻 Shop Squarespace Templates ✍️ Curated Business Resources 🥰 Complimentary Downloadables 🤍 Bespoke Branding & Websites Links in my posts may be affiliate links. Link to comment
Aurora Posted October 24 Author Share Posted October 24 15 hours ago, studiofounded said: @Aurora Yes — you can try this! .sqs-gallery-design-autogrid .summary-item:hover img{ transform: scale(1.2); transition: 1s ease-in-out; } .sqs-gallery-design-autogrid .summary-item img{ transition: 1s ease-in-out; } @studiofounded thank you! I'd like to add the same effect to the images on the blog page as well (its called "writing" on my site). Is that possible? Link to comment
Aurora Posted October 25 Author Share Posted October 25 @studiofounded I saw another hovering effect that I'd like to try on my site where the block moves up just a little bit. Is that possible? Many thanks again! Link to comment
tuanphan Posted October 27 Share Posted October 27 Use this CSS code for Writing blog page /* blog hover */ .blog-alternating-side-by-side .blog-item.is-loaded:hover section.blog-image-wrapper { transform: scale(1.2); transition: 1s ease-in-out; } section.blog-image-wrapper { transition: 1s ease-in-out; } Aurora 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Aurora Posted October 30 Author Share Posted October 30 On 10/27/2023 at 4:24 AM, tuanphan said: Use this CSS code for Writing blog page /* blog hover */ .blog-alternating-side-by-side .blog-item.is-loaded:hover section.blog-image-wrapper { transform: scale(1.2); transition: 1s ease-in-out; } section.blog-image-wrapper { transition: 1s ease-in-out; } @tuanphan Thanks so much! I've adapted the code a little bit to this: .blog-alternating-side-by-side .blog-item.is-loaded:hover img { transform: scale(1.03); transition: 0.3s ease-in-out; } img { transition: 0.3s ease-in-out; } I would also like the images to brighten a little bit at the same time. Is that possible? Many thanks! Link to comment
tuanphan Posted November 3 Share Posted November 3 On 10/30/2023 at 6:56 PM, Aurora said: @tuanphan Thanks so much! I've adapted the code a little bit to this: .blog-alternating-side-by-side .blog-item.is-loaded:hover img { transform: scale(1.03); transition: 0.3s ease-in-out; } img { transition: 0.3s ease-in-out; } I would also like the images to brighten a little bit at the same time. Is that possible? Many thanks! Edit top code to this .blog-alternating-side-by-side .blog-item.is-loaded:hover img { transform: scale(1.03); transition: .3s ease-in-out; filter: brightness(0.9); } Aurora 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Aurora Posted November 3 Author Share Posted November 3 2 hours ago, tuanphan said: Edit top code to this .blog-alternating-side-by-side .blog-item.is-loaded:hover img { transform: scale(1.03); transition: .3s ease-in-out; filter: brightness(0.9); } Thank you! Is it possible to have the .3s ease out in there as well? Otherwise it pops back quickly, which I don't like. Link to comment
tuanphan Posted November 6 Share Posted November 6 On 11/3/2023 at 1:35 PM, Aurora said: Thank you! Is it possible to have the .3s ease out in there as well? Otherwise it pops back quickly, which I don't like. change this line transition: .3s ease-in-out; to transition: all .3s ease-in-out; Aurora 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Aurora Posted November 6 Author Share Posted November 6 6 hours ago, tuanphan said: change this line transition: .3s ease-in-out; to transition: all .3s ease-in-out; Thank you, but it's not working. It's still popping back too quickly. Link to comment
tuanphan Posted November 8 Share Posted November 8 On 11/6/2023 at 2:29 PM, Aurora said: Thank you, but it's not working. It's still popping back too quickly. try this transition: all .95s ease-in-out !important; Aurora 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Aurora Posted November 8 Author Share Posted November 8 8 minutes ago, tuanphan said: try this transition: all .95s ease-in-out !important; It's not that 0.3s isn't long enough; it's that it's working when I hover over it, but when I remove the cursor, it pops back, so it's less than 0.3s. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment