Jump to content

Opaque Image Gallery (Strips) Hover Effect

Go to solution Solved by tuanphan,

Recommended Posts

Hello all,

I'm trying to add an image hover effect on my 7.1 website. It uses a grid: strips gallery on the homepage, however I can not get any CSS to complete the hover effect. Do I need to publish the site to see the actual hover effect or will it show in the editing menu?

I would like to have a similar effect to this website, but with a whiter overlay hover. 

https://samuelelkins.co/

Thanks !

Link to comment
  • Replies 13
  • Created
  • Last Reply

Top Posters In This Topic

  • Solution

Add to Home > Design > Custom CSS

figure.gallery-strips-item {
    position: relative;
}
.gallery-caption {
    position: static;
}
/* title */
.gallery-caption-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 7%;
    transition: opacity ease 200ms !important;
    opacity: 0 !important;
pointer-events: none;
}
.gallery-strips-item:hover .gallery-caption-content {
    opacity: 1 !important;
}
/* overlay */
.gallery-strips-item-wrapper a:after {
    background: #f4f6ea;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity ease 200ms !important;
}
.gallery-strips-item:hover .gallery-strips-item-wrapper a:after {
    opacity: 0.75;
}

 

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
9 hours ago, tuanphan said:

Add to Home > Design > Custom CSS


figure.gallery-strips-item {
    position: relative;
}
.gallery-caption {
    position: static;
}
/* title */
.gallery-caption-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 7%;
    transition: opacity ease 200ms !important;
    opacity: 0 !important;
pointer-events: none;
}
.gallery-strips-item:hover .gallery-caption-content {
    opacity: 1 !important;
}
/* overlay */
.gallery-strips-item-wrapper a:after {
    background: #f4f6ea;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity ease 200ms !important;
}
.gallery-strips-item:hover .gallery-strips-item-wrapper a:after {
    opacity: 0.75;
}

 

This worked perfectly! Thank you very much.

Link to comment
  • 5 months later...

Hi, I'm having a similar issue with my gallery. I used the code above, which is already great, but I'm not quite there yet.

I would like to customise the captions even more, similar to the effect I obtained with the image block above.

Any chance someone can help with:

- caption justified to the centre (when the text wraps the caption is justified to the left)

- caption split in two lines (Project Name / Photographer Name)

- Font line above H2, font line below p2

 

Site: https://coconut-penguin-g55p.squarespace.com/

PW: MassTrial

Page: Projects

 

Thank you in advance!

Link to comment
On 1/23/2021 at 3:28 AM, FrancescoRusso said:

Hi, I'm having a similar issue with my gallery. I used the code above, which is already great, but I'm not quite there yet.

I would like to customise the captions even more, similar to the effect I obtained with the image block above.

Any chance someone can help with:

- caption justified to the centre (when the text wraps the caption is justified to the left)

- caption split in two lines (Project Name / Photographer Name)

- Font line above H2, font line below p2

 

Site: https://coconut-penguin-g55p.squarespace.com/

PW: MassTrial

Page: Projects

 

Thank you in advance!

Hi. You mean Featured Projects? It looks like you solved this?

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
On 1/28/2021 at 12:23 PM, FrancescoRusso said:

Sorry, not sure you've seen my message below. I'm new to the forum 

Add to Design > Custom CSS

/* projects page hover */
body#collection-60097f2c66dcd12e69ed00d5 .design-layout-poster:hover .image-card-wrapper {
    background-color: rgba(255,255,255,0.3);
}

 

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
12 hours ago, tuanphan said:

Add to Design > Custom CSS


/* projects page hover */
body#collection-60097f2c66dcd12e69ed00d5 .design-layout-poster:hover .image-card-wrapper {
    background-color: rgba(255,255,255,0.3);
}

 

Thanks, but I don't think this works. Have you see the post earlier? I'll copy here again

 

Hi, I'm having a similar issue with my gallery. I used the code above, which is already great, but I'm not quite there yet.

I would like to customise the captions even more, similar to the effect I obtained with the image block above.

Any chance someone can help with:

- caption justified to the centre (when the text wraps the caption is justified to the left)

- caption split in two lines (Project Name / Photographer Name)

- Font line above H2, font line below p2

 

Site: https://coconut-penguin-g55p.squarespace.com/

PW: MassTrial

Page: Projects

 

Thank you in advance!

Link to comment
On 8/19/2020 at 4:05 PM, tuanphan said:

Add to Home > Design > Custom CSS


figure.gallery-strips-item {
    position: relative;
}
.gallery-caption {
    position: static;
}
/* title */
.gallery-caption-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 7%;
    transition: opacity ease 200ms !important;
    opacity: 0 !important;
pointer-events: none;
}
.gallery-strips-item:hover .gallery-caption-content {
    opacity: 1 !important;
}
/* overlay */
.gallery-strips-item-wrapper a:after {
    background: #f4f6ea;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity ease 200ms !important;
}
.gallery-strips-item:hover .gallery-strips-item-wrapper a:after {
    opacity: 0.75;
}

 

I pasted this in Design - Custom CSS, but nothing happens. Any thoughts?

Thank you!

Link to comment
12 hours ago, tuanphan said:

Add to Design > Custom CSS


/* projects page hover */
body#collection-60097f2c66dcd12e69ed00d5 .design-layout-poster:hover .image-card-wrapper {
    background-color: rgba(255,255,255,0.3);
}

 

I was also wondering how to get the caption in a gallery to be centered, instead of beng left-positioned?

Link to comment
On 2/1/2021 at 8:08 AM, TheColorist said:

I pasted this in Design - Custom CSS, but nothing happens. Any thoughts?

Thank you!

Can you share link to page where you insert gallery?

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.