Created
November 6, 2013 06:10
-
-
Save bMinaise/7331694 to your computer and use it in GitHub Desktop.
Bootstrap 3 - Thumbnail Caption Hover Snippet by: sevenx.de
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
padding-top: 50px; | |
} | |
.thumbnail { | |
position:relative; | |
overflow:hidden; | |
} | |
.caption { | |
position:absolute; | |
top:0; | |
right:0; | |
background:rgba(66, 139, 202, 0.75); | |
width:100%; | |
height:100%; | |
padding:2%; | |
display: none; | |
text-align:center; | |
color:#fff !important; | |
z-index:2; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<div class="col-md-3"> | |
<div class="thumbnail"> | |
<div class="caption"> | |
<h4>Thumbnail Headline</h4> | |
<p>short thumbnail description</p> | |
<p><a href="" class="label label-danger" rel="tooltip" title="Zoom">Zoom</a> | |
<a href="" class="label label-default" rel="tooltip" title="Download now">Download</a></p> | |
</div> | |
<img src="http://lorempixel.com/400/300/sports/1/" alt="..."> | |
</div> | |
</div> | |
<div class="col-md-3"> | |
<div class="thumbnail"> | |
<div class="caption"> | |
<h4>Thumbnail Headline</h4> | |
<p>short thumbnail description</p> | |
<p><a href="" class="label label-danger" rel="tooltip" title="Zoom">Zoom</a> | |
<a href="" class="label label-default" rel="tooltip" title="Download now">Download</a></p> | |
</div> | |
<img src="http://lorempixel.com/400/300/sports/2/" alt="..."> | |
</div> | |
</div> | |
<div class="col-md-3"> | |
<div class="thumbnail"> | |
<div class="caption"> | |
<h4>Thumbnail Headline</h4> | |
<p>short thumbnail description</p> | |
<p><a href="" class="label label-danger" rel="tooltip" title="Zoom">Zoom</a> | |
<a href="" class="label label-default" rel="tooltip" title="Download now">Download</a></p> | |
</div> | |
<img src="http://lorempixel.com/400/300/sports/3/" alt="..."> | |
</div> | |
</div> | |
<div class="col-md-3"> | |
<div class="thumbnail"> | |
<div class="caption"> | |
<h4>Thumbnail Headline</h4> | |
<p>short thumbnail description</p> | |
<p><a href="" class="label label-danger" rel="tooltip" title="Zoom">Zoom</a> | |
<a href="" class="label label-default" rel="tooltip" title="Download now">Download</a></p> | |
</div> | |
<img src="http://lorempixel.com/400/300/sports/4/" alt="..."> | |
</div> | |
</div> | |
</div> | |
</div><!-- /.container --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( document ).ready(function() { | |
$("[rel='tooltip']").tooltip(); | |
$('.thumbnail').hover( | |
function(){ | |
$(this).find('.caption').slideDown(250); //.fadeIn(250) | |
}, | |
function(){ | |
$(this).find('.caption').slideUp(250); //.fadeOut(205) | |
} | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment