Pesquisar neste blog

13/03/2023

Imagem refletida com CSS

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="refresh" content="5">
    <title>Imagem refletida</title>
    <link rel="stylesheet" type="text/css" href="estilo.css">

<style>
    .imagem{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: url(https://cdn.britannica.com/66/80466-050-2E125F5C/Arc-de-Triomphe-Paris-France.jpg?w=300) center;
    background-size: cover;
}
.imagem::before, .imagem::after{
    content: '';
    width: 100%;
    height: 100%;
    bottom: -220px;
    border-radius: inherit;
    position: absolute;
}
.imagem::before{
    background: inherit;
    opacity: .6;
    transform: scaleY(-1);
}
.imagem::after{
    background: linear-gradient(0deg, #fff,
     sT, #FFF0 100%);

}
</style>
</head>
<body>
    <div class="imagem"></div>
</body>
</html>

Saída gerada















Nenhum comentário: