"Animated loader in css3, How to make animated loader in css3 , How to make animated heart loader in css3 and jquery."
Bootstrap 4.1.1 Snippet by RAJKUMAR123

1
2
3
4
5
6
7
8
9
10
11
<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><div class="box">
<div class="heart">
<span class="text"><h4>ADMEC India</h4> (Raj Kumar)</span>
</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
body{
margin: 0;
padding: 0;
background-color: #363636;
}
.box{
position: absolute;
top: 50%;
left: 50%;
border-radius: 50%;
border:5px solid #fff;
padding: 70px;
background-color: #262626;
box-shadow: 45px 45px 45px rgba(0, 0, 0, 0.8);
transform: translate(-50%, -50%);
z-index: 9;
overflow: hidden;
}
.text{
position:absolute;
z-index:9;
font-size:14px;
transform:rotate(-45deg) translate(-20px, -10px);
color:#fff;
text-align:center;
}
.text h4{font-size:16px; color:#ff0;}
.heart{
position: relative;
width: 100px;
height: 100px;
background-color: #f00;
transform: rotate(45deg);
box-shadow: 10px 0px 50px #f00;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: