"image hover"
Bootstrap 3.0.0 Snippet by karimsharf12252

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<link href="https://fonts.googleapis.com/css?family=Noto+Serif:400|Open+Sans:400,400i" rel="stylesheet">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="basic-widgets">
<div class="project-hover">
<img src="http://placehold.it/360x360" class="img-responsive transition">
<div class="text-view transition text-center">
<h3>More Information On</h3>
<p>Improved Glass Conservatory Roofs</p>
</div>
<div class="btn-view transition text-center">
<a type="submit" class="btn btn-default">Submit</a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="basic-widgets">
<div class="project-hover">
<img src="http://placehold.it/360x360" class="img-responsive transition">
<div class="text-view transition text-center">
<h3>More Information On</h3>
<p>Improved Glass Conservatory Roofs</p>
</div>
<div class="btn-view transition text-center">
<a type="submit" class="btn btn-default">Submit</a>
</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
body {
font-family: 'Noto Serif', serif;
color: #252525;
-webkit-font-smoothing: antialiased;
font-weight: 400;
font-size: 16px;
color: #757575;
}
.transition {
-webkit-transition: all .3s;
-moz-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
}
.btn {
padding: 8px 40px;
border-radius: 2px;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-o-transition: all .3s;
transition: all .3s;
background-color: #dd003b;
color: #fff;
}
.btn:hover {
background-color: #aa002d;
color: #fff;
}
h3 {
font-family: 'Noto Serif', serif;
font-size: 20px;
color: #444444;
}
.img-responsive {
width: 100%;
border-radius: 2px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: