"Food Gallery"
Bootstrap 3.0.0 Snippet by Eliasmia

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 ---------->
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-sm-3">
<div class="feature-gallery">
<img class="thumb" src="http://www.nycoffee.com/order/images/Blackened-Chicken-Fettuccine-Alfredo.jpg" alt="" title="">
<div class="fg-overlay">
<h2>Exchange of goods and services</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
</div>
</div>
<!--/feature-gallery--->
<div class="col-md-3 col-sm-3">
<div class="feature-gallery">
<img class="thumb" src="http://www.nycoffee.com/order/images/Blackened-Chicken-Fettuccine-Alfredo.jpg" alt="" title="">
<div class="fg-overlay">
<h2>Exchange of goods and services</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
</div>
</div>
<!--/feature-gallery--->
<div class="col-md-3 col-sm-3">
<div class="feature-gallery">
<img class="thumb" src="http://www.nycoffee.com/order/images/Blackened-Chicken-Fettuccine-Alfredo.jpg" alt="" title="">
<div class="fg-overlay">
<h2>Exchange of goods and services</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</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
img {
width: 100%;
height: auto;
}
.feature-gallery {
margin: 15px 0;
overflow: hidden;
position: relative;
}
.feature-gallery img.thumb {
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 700ms ease;
-moz-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
}
.feature-gallery:hover img.thumb {
opacity: 1;
transition: all 0.35s;
-moz-transform: scale(1.13);
-webkit-transform: scale(1.13);
-ms-transform: scale(1.13);
transform: scale(1.13);
}
.fg-overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
transition: all.3s;
width: 100%;
height: 100%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: