"Responsive Circle Hover Animation"
Bootstrap 3.2.0 Snippet by mitsunobuk

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<section class="section_0">
<div class="col-sm-3">
<div class="circle circle1">
<a href="#section_1"><h2>1<small>st</small><p>Title</p></h2></a>
</div>
</div>
<div class="col-sm-3">
<div class="circle circle2">
<a href="#section_2"><h2>2<small>nd</small><p>Title</p></h2></a>
</div>
</div>
<div class="col-sm-3">
<div class="circle circle3">
<a href="#section_3"><h2>3<small>rd</small><p>Title</p></h2></a>
</div>
</div>
<div class="col-sm-3">
<div class="circle">
<a href="#section_4"><h2>4<small>th</small><p>Title</p></h2></a>
</div>
</div>
</section>
</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
.circle {
margin: 36px;
display: inline-block;
padding: 16px;
text-align: center;
width: 180px;
height: 180px;
border-radius: 50%;
border: 2px solid #1d2087;
}
.circle::before,
.circle::after {
position: absolute;
z-index: -1;
display: block;
content: '';
}
.circle,
.circle::before,
.circle::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .5s;
transition: all .5s;
}
.circle {
position: relative;
z-index: 2;
background-color: #fff;
border: 2px solid #5c5eae;
color: #5c5eae;
line-height: 50px;
overflow: hidden;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: