HTML code
This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 3.3.6 included, to get the result that you can see in the preview selection
Download<div class="container">
<div class="row">
<div class="col-md-12">
<div id="grid" class="row">
<div class="mix col-sm-3 page1 page4 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/FFB6C1/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page2 page3 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/20B2AA/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page3 page2 margin30 ">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/87CEFA/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page4 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/EE82EE/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page1 margin30 ">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/#FF6347/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page2 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/008080/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page3 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/DDA0DD/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
<div class="mix col-sm-3 page4 margin30">
<div class="item-img-wrap ">
<img src="https://www.bootdey.com/image/312x315/FFA500/000000" class="img-responsive" alt="workimg">
<div class="item-img-overlay">
<a href="#" class="show-image">
<span></span>
</a>
</div>
</div>
</div>
</div><!--grid-->
</div>
</div>
<div class="row gallery-bottom">
<div class="col-sm-6">
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li>
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</div>
<div class="col-sm-6 text-right">
<em>Displaying 1 to 8 (of 100 posts)</em>
</div>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 3.3.6 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;}
.margin30 {
margin-bottom: 30px;
}
.item-img-wrap {
position: relative;
text-align: center;
overflow: hidden;
}
.item-img-wrap img {
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-webkit-transition: all 200ms linear;
transition: all 200ms linear;
width: 100%;
}
/************************image hover effect*******************/
.item-img-wrap {
position: relative;
text-align: center;
overflow: hidden;
}
.item-img-wrap img {
-moz-transition: all 200ms linear;
-o-transition: all 200ms linear;
-webkit-transition: all 200ms linear;
transition: all 200ms linear;
width: 100%;
}
.item-img-overlay {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.item-img-overlay span {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: url(http://bootstraplovers.com/templates/assan-2.2/main-template/img/plus.png) no-repeat center center rgba(0, 0, 0, 0.7);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-moz-transition: opacity 250ms linear;
-o-transition: opacity 250ms linear;
-webkit-transition: opacity 250ms linear;
transition: opacity 250ms linear;
}
.item-img-wrap:hover .item-img-overlay span {
opacity: 1;
}
.item-img-wrap:hover img {
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
/*************pagination***********/
.gallery-bottom .pagination {
margin-top: 0px;
}
.pagination > li > a, .pagination > li > span {
background-color: #ccc;
padding: 3px 9px;
color: #fff;
border: 0px;
}
.pagination > li > a {
margin-right: 5px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
background-color: #32c5d2;
}
About this bootstrap example/template
This example/template, Gallery with pagination, was published on Apr 30th 2016, 08:47 by Bootdey Admin and it is free.
We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.
We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.
This code example currectly have 30.2K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 3.3.6
<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>
This code example is based on bootstrap 3.3.6 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working