Hover Effect Style 72

Подробное описание и демонстрацией работы эффекта наведения под номером №73 для бибилиотеки Bootstrap. Html и CSS код для реализации hover effect как на изображении.

Демонстрация эффекта наведения — стиль 73

Williamson

заговолокer

Kristiana

Web Developer

Steve Thomas

Graphic Designer
html разметка для реализации данного эффекта

<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="box">
<img src="https://fokit.ru/demo/images/hover-effect/hover-effect-style-73/img-1.jpg">
<div class="boxContent">
<h3 class="title">Williamson</h3>
<span class="post">web designer</span>
</div>
</div>
</div>

<div class="col-md-4 col-sm-6">
<div class="box">
<img src="https://fokit.ru/demo/images/hover-effect/hover-effect-style-73/img-2.jpg">
<div class="boxContent">
<h3 class="title">Kristiana</h3>
<span class="post">Web Developer</span>
</div>
</div>
</div>
</div>
</div>

css разметка для реализации данного эффекта

.box{
position: relative;
box-shadow: 0 0 5px #555;
}
.box img{
width: 100%;
height: auto;
transition: all 0.3s ease 0s;
}
.box:hover img{
filter: brightness(0.4);
}
.box .boxContent{
width: 80%;
height: 80%;
position: absolute;
top: 10%;
left: 10%;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
text-align: center;
transform: scale(0, 1);
transition: all 0.35s ease 0s;
}
.box:hover .boxContent{
transform: scale(1);
}
.box .title{
font-size: 25px;
font-weight: 600;
color: #fff;
margin: 23% 0 20px;
transform: translate3d(0, -100%, 0);
transition: all 0.35s ease 0s;
}
.box .post{
display: block;
font-size: 16px;
color: #fff;
text-transform: capitalize;
transform: translate3d(0, 100%, 0);
transition: all 0.35s ease 0s;
}
.box:hover .title,
.box:hover .post{
transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 990px){
.box{ margin-bottom: 25px; }
}



Теги:
0

Оставить своё мнение

Ваш e-mail не будет опубликован. Обязательные поля помечены *