"Animated UI elements using font awesome"
Bootstrap 4.1.1 Snippet by MMLTech

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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Donation modal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12 mb-5 mt-3">
<h1>Animated UI elements with font awesome</h1>
<hr>
</div>
<div class="col-xl-2 col-md-4 col-6">
<div class="ui-border-effect ui-info continuous">
<i class="fas fa-phone fa-2x"></i>
<h6 class="m-0">Phone</h6>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6">
<div class="ui-border-effect ui-primary">
<i class="fas fa-user fa-2x"></i>
<h6 class="m-0">User</h6>
</div>
</div>
<div class="col-xl-2 col-md-4 col-6">
<div class="ui-border-effect ui-success">
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
.ui-border-effect {
padding: 20px 0 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
cursor: pointer;
}
.ui-border-effect:before {
content: "";
-webkit-transition: 0.5s;
transition: 0.5s;
border: 1px solid;
border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
will-change: border-radius;
width: calc(100% - 40px);
height: calc(100% - 40px);
display: block;
position: absolute;
-webkit-animation: boldering 10s infinite paused;
animation: boldering 10s infinite paused;
top: -10px;
left: 20px;
}
.ui-border-effect.continuous:before, .ui-border-effect:hover:before {
-webkit-animation-play-state: running;
animation-play-state: running;
}
.ui-border-effect.continuous i, .ui-border-effect:hover i {
opacity: 1;
}
.ui-border-effect i {
margin-bottom: 1rem;
opacity: 0.5;
-webkit-transition: 0.3s all;
-moz-transition: 0.3s all;
-ms-transition: 0.3s all;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: