"Animated hover effects"
Bootstrap 3.3.0 Snippet by Navi Mehra

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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">
<h1>Animated effects</h1>
<div class="col-lg-4 col-md-4 col-sm-4">
<p class="b-box box-rt"><i>iPhone 6s</i></p>
<p class="b-box box-rt"><i>3D Touch</i></p>
<p class="b-box box-rt"><i>Touch ID</i></p>
</div>
<div class="col-lg-4 col-md-4 col-sm-4"><img src="https://media.giphy.com/media/nWSN2DJtRyfqo/giphy.gif" alt="enki-mobile" width="100%" class="aligncenter size-medium wp-image-2402"><br>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<p class="b-box box-lf"><i>Website</i></p>
<p class="b-box box-lf"><i>A9 chip</i></p>
<p class="b-box box-lf"><i>Apps</i></p>
</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
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,900,800,700,600);
body {
font-family: 'Raleway', sans-serif;
}
.row {
display: -webkit-box;
}
.row:before, .row:after {
display: table;
content: " ";
}
h1 {
border-bottom: 10px solid red;
font-family: "Raleway", sans-serif;
font-size: 65px;
font-weight: 900;
margin: 0 auto 60px;
padding: 20px 0 3px;
text-align: center;
text-transform: uppercase;
width: 55.2%;
}
.col-md-4 {
width: 33.33333333333333%;
text-align: center;
}
.row:before, .row:after {
display: table;
content: " ";
}
.b-box {
background: #ebebeb;
border: 13px solid #d4d4d4;
border-radius: 50%;
color: #666;
display: table;
font-size: 0.9em;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: