Jump to content

About the magnification effect on the poster - EmbyServer 4750


CarlosLima
Go to solution Solved by Happy2Play,

Recommended Posts

CarlosLima
/* #14 - Magnification effect on the poster */
.cardBox{transition:all 0.1s;}
.cardBox:hover {transform:scale(1.075);transition:all 0.1s;}

Hi,
I have this code that displays a magnification effect on posters on hover, however, I prefer the effect to be valid only on the homepage and not on the details screen.
Thank you for that.

Link to comment
Share on other sites

  • Solution
Happy2Play
20 minutes ago, CarlosLima said:
/* #14 - Magnification effect on the poster */
.cardBox{transition:all 0.1s;}
.cardBox:hover {transform:scale(1.075);transition:all 0.1s;}

Hi,
I have this code that displays a magnification effect on posters on hover, however, I prefer the effect to be valid only on the homepage and not on the details screen.
Thank you for that.

Like this

/* #14 - Magnification effect on the poster */
[data-type="home"] .cardBox{transition:all 0.1s;}
[data-type="home"] .cardBox:hover {transform:scale(1.075);transition:all 0.1s;}

 

  • Like 1
Link to comment
Share on other sites

CarlosLima

You are the best. 😍
Amazing. Thank you very much.

Link to comment
Share on other sites

Create an account or sign in to comment

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

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...