"Minimal Preview Thumbnails"
Bootstrap 3.1.0 Snippet by xanakone

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.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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">
<h2 class="text-center">Minimal Preview Thumbnails </h2>
<hr/>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<h4>
Post Thumbnail List
<span class="label label-info info">
<span data-toggle="tooltip" title="viewed">257 <b class="glyphicon glyphicon-eye-open"></b></span>
<span data-toggle="tooltip" title="viewed">3 <b class="glyphicon glyphicon-star"></b></span>
<span data-toggle="tooltip" title="Bootstrap version">3.0.3</span>
</span>
</h4>
<img src="http://www.remabledesigns.com/bootsnipp/img/201402031158.png" alt="...">
<a href="http://bootsnipp.com/snippets/featured/post-thumbnail-list" class="btn btn-primary col-xs-12" role="button">View Snippet</a>
<div class="clearfix"></div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<h4>
Colourful Tabbed Slider Carousel
<span class="label label-info info">
<span data-toggle="tooltip" title="Viewed">433 <i class="glyphicon glyphicon-eye-open"></i></span>
<span data-toggle="tooltip" title="Favorited">4 <i class="glyphicon glyphicon-star"></i></span>
<span data-toggle="tooltip" title="Bootstrap version">3.0.3</span>
</span>
</h4>
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
.thumbnail {
position: relative;
padding: 0px;
margin-bottom: 20px;
}
.thumbnail > h4 {
padding: 7px 5px 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.thumbnail h4 .info {
position: absolute;
top: 0px;
right: 0px;
font-size: 0.6em;
padding-left: 15px;
border-top-right-radius: 3px;
border-bottom-left-radius: 4px;
border-radius: 0px;
border-bottom-left-radius: 5px;
cursor: pointer;
}
.thumbnail h4 .info > span {
margin-right: 10px;
}
.thumbnail img {
width: 100%;
}
.thumbnail a.btn {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
$(document).ready( function() {
$('[data-toggle="tooltip"]').tooltip();
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: