lunes, 12 de noviembre de 2018

CSS - Hover en imagen A

noviembre 12, 2018 // by Alex // // No comments

Avatar

Texto Hover

Estas son las clases utilizadas para crear el hover, hay que modificar el tamaño de las imagenes

CSS


.contener{
position: relative;
width: 642px;
height: 428px;
margin-bottom: 10px;
cursor: pointer;
}
.imagen {
display: block;
width: 642px;
height: 428px;
}
.overlayer{
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.6);
overflow: hidden;
width: 100%;
height: 0%;
transition: .5s ease;
}
.textox {
font-family: 'Handlee', cursive;
color: #fff;
font-size: 2rem;
white-space: nowrap;
line-height: 3rem;
position: absolute;
overflow: hidden;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
width: 334px;
border-bottom: 2px solid #fff;
border-top: 2px solid #fff;
height: 3rem;
}

.contener:hover .overlayer {
height: 100%;
}

HTML

<div class="contener"> <img alt="Avatar" class="imagen" loading="lazy" src="https://2.bp.blogspot.com/ -aOAji33mkzQ/Wwa2LkAtlsI/AAAAAAAAAuc/ 64rejCuBO9Y4tKkoO_XgBWwCfHL0SSckQCLcBGAs/ s1600/imag-parahover.jpg"> <div class="overlayer"> <div class="textox"> <p>Texto Hover</p> </div> </div> </div>

NOTA:

Procura utilizar estas propiedades en "contener" e "imagen", cuando el contenedor padre tenga un tamaño definido:

CSS

width:100%; height:auto;

0 comentarios:

Publicar un comentario