E
E
evomed2020-02-24 11:48:25
css
evomed, 2020-02-24 11:48:25

How to enlarge and darken an image in a card on hover?

There is a modified bootstrap card with a picture
https://jsfiddle.net/q89zg0vm/
Need an ivi effect https://www.ivi.tv
When you hover over a card with a movie, the card becomes taller, the image becomes a little confused and darkened
5e538dd0a6a12466545166.png
How to do this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Ankhena, 2020-02-24
@evomed

Dimming: Pseudo element with rgba(0,0,0,0.5) or whatever you want.
Zoom: transform: scale(1.2) or whatever you need.
How exactly is done on ivi can be viewed through the developer tools in any adequate browser.

A
an_tropa, 2020-02-26
@an_tropa

.card-img:before:hover {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #000;
}
.card-img:hover {
transform: translateY(10px);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question