Hover Effect Style 123

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

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

Williamson

Web Developer

Steve Thomas

Web Developer
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-122/img-1.jpg" alt=""/>
<div class="box-content">
<h3 class="title">Williamson</h3>
<span class="post">Web Developer</span>
<ul class="icon">
<li><a href="#"><i class="fa fa-search"></i></a></li>
<li><a href="#"><i class="fa fa-link"></i></a></li>
</ul>
</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-122/img-2.jpg" alt=""/>
<div class="box-content">
<h3 class="title">Kristiana</h3>
<span class="post">Web Designer</span>
<ul class="icon">
<li><a href="#"><i class="fa fa-search"></i></a></li>
<li><a href="#"><i class="fa fa-link"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>

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

.box{
text-align: center;
overflow: hidden;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
position: relative;
}
.box:before{
content: "";
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: all 0.35s ease 0s;
}
.box:hover:before{
opacity: 1;
}
.box img{
width: 100%;
height: auto;
}
.box .box-content{
width: 90%;
height: 90%;
position: absolute;
top: 5%;
left: 5%;
}
.box .box-content:before,
.box .box-content:after{
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
opacity: 0;
transition: all 0.7s ease 0s;
}
.box .box-content:before{
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
border-top: 1px solid rgba(255, 255, 255, 0.5);
transform: scale(0, 1);
transform-origin: 0 0 0;
}
.box .box-content:after{
border-left: 1px solid rgba(255, 255, 255, 0.5);
border-right: 1px solid rgba(255, 255, 255, 0.5);
transform: scale(1, 0);
transform-origin: 100% 0 0;
}
.box:hover .box-content:before,
.box:hover .box-content:after{
opacity: 1;
transform: scale(1);
transition-delay: 0.15s;
}
.box .title{
font-size: 21px;
font-weight: bold;
color: #fff;
margin: 15px 0;
opacity: 0;
transform: translate3d(0px, -50px, 0px);
transition: transform 0.5s ease 0s;
}
.box:hover .title{
opacity: 1;
transform: translate3d(0px, 0px, 0px);
}
.box .post{
display: inline-block;
font-size: 14px;
color: #fff;
text-transform: capitalize;
padding: 10px;
background: #d79719;
opacity: 0;
border-radius: 0 19px 0 19px;
transform: translate3d(0px, -50px, 0px);
transition: all 0.7s ease 0s;
}
.box:hover .post{
opacity: 1;
transform: translate3d(0px, 0px, 0px);
transition-delay: 0.15s;
}
.box .icon{
width: 100%;
list-style: none;
padding: 0;
margin: 0;
position: absolute;
bottom: -10px;
left: 0;
opacity: 0;
z-index: 1;
transition: all 0.7s ease 0s;
}
.box:hover .icon{
bottom: 20px;
opacity: 1;
transition-delay: 0.15s;
}
.box .icon li{
display: inline-block;
}
.box .icon li a{
display: block;
width: 40px;
height: 40px;
line-height: 40px;
border: 1px solid #fff;
border-radius: 0 16px 0 16px;
font-size: 14px;
color: #fff;
margin-right: 5px;
transition: all 0.4s ease 0s;
}
.box .icon li a:hover{
background: #d79719;
border-color: #d79719;
}
@media only screen and (max-width:990px){
.box{ margin-bottom: 30px; }
}



Теги:
0

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

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