"Untitled"
Bootstrap 4.1.1 Snippet by divyalahad

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="box">
<div class="box-img">
<img src="https://www.indior.tours/images/India_Gate,_Delhi.webp" alt="">
</div>
<div class="content">
<h3 class="title">Lorem ipsum dolor</h3>
<p class="description">Lorem ipsum dolor sit amet, consectetur. </p>
<ul class="social-links">
<li><a href="#" class="fab fa-facebook"></a> </li>
<li><a href="#" class="fab fa-twitter"></a> </li>
<li><a href="#" class="fab fa-linkedin"></a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.box{
position:relative;
overflow: hidden;
}
.box .box-img{
transform: translateX(0px);
transition:transform 0.40s linear ;
}
.box:hover .box-img{
transform: translateX(100%);
}
.box .box-img img{
width: 100%;
height: auto;
}
.box .content{
position: absolute;
top:0;
right: 100%;
width:100%;
height:100%;
padding:5%;
text-align:center;
background:#e67e22;
transition:right 0.40s linear;
}
.box:hover .content{
right:0%;
}
.box .title{
font-size:18px;
text-transform:capitalize;
color:#fff;
margin: 5% 0 0;
}
.box .description{
color:#fff;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: