Hello
I want to add a cool effect like the one you will find on this page:
https://partners.no/kontor/holmskau-partners
When you move the mouse over the photos you will see the picture goes from dark to light original color. Anyone who have a clue how to make this effect on my own site? 
1 Like
You can use css like this:
.your_image_class{
filter: brightness(50%);
}
.your_image_class:hover{
filter:brightness(100%);
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > main.css and paste this at the bottom of the file:
.swiper-slide a {
position: relative;
display: inline-block;
}
.swiper-slide img {
transition: filter 0.3s ease-in-out;
filter: brightness(90%);
}
.swiper-slide a:hover img {
filter: brightness(100%);
}