"bootstrap 5 Css animation Card"
Bootstrap 4.1.1 Snippet by dkstudio

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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">
<h2>Create your snippet's HTML, CSS and Javascript in the editor tabs</h2>
<div class="service-block-two col-lg-4 col-md-6 col-sm-12">
<div class="inner-box">
<div class="shape-one"></div>
<div class="shape-two"></div>
<div class="icon-box">
<span class="icon flaticon-coding-1"></span>
</div>
<h5><a href="services-detail.html">Web Develpment</a></h5>
<div class="text">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</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
.service-block-two {
position: relative;
z-index: 1;
margin-bottom: 30px;
}
.service-block-two .inner-box {
position: relative;
overflow: hidden;
padding: 45px 45px;
border-radius: 6px;
background-color: #f5f5f5;
}
.service-block-two .inner-box:before {
position: absolute;
content: '';
left: 0px;
bottom: 0px;
width: 100%;
height: 50%;
opacity: 0;
background-color: #141d38;
-webkit-transition: all 600ms ease;
-ms-transition: all 600ms ease;
-o-transition: all 600ms ease;
-moz-transition: all 600ms ease;
transition: all 600ms ease;
}
.service-block-two .inner-box .shape-one {
content: '';
width: 250px;
height: 250px;
background: #0060ff;
border-radius: 50%;
position: absolute;
top: -120px;
opacity: 0.4;
right: -120px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: