"Service Box"
Bootstrap 4.1.1 Snippet by Nemra1

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
<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">
<h1>Service box</h1>
<div class="row">
<div class="col-md-3 col-sm-6 ">
<div class="service-box">
<div class="service-icon yellow">
<div class="front-content">
<i class="fa fa-trophy"></i>
<h3>design</h3>
</div>
</div>
<div class="service-content">
<h3>design</h3>
<p>No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 ">
<div class="service-box">
<div class="service-icon orange">
<div class="front-content">
<i class="fa fa-anchor"></i>
<h3>php</h3>
</div>
</div>
<div class="service-content">
<h3>php developer</h3>
<p>No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
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
h1{
font-size:25px;
text-align: left;
text-transform:capitalize;
}
.service-box{
position: relative;
overflow: hidden;
margin-bottom:10px;
perspective:1000px;
-webkit-perspective:1000px;
}
.service-icon{
width: 100%;
height: 220px;
padding: 20px;
text-align: center;
transition: all .5s ease;
}
.service-content{
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: 0;
width: 100%;
height: 220px;
padding: 20px;
text-align: center;
transition: all .5s ease;
background-color: #474747;
backface-visibility:hidden;
transform-style: preserve-3d;
-webkit-transform: translateY(110px) rotateX(-90deg);
-moz-transform: translateY(110px) rotateX(-90deg);
-ms-transform: translateY(110px) rotateX(-90deg);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: