
jQuery底部填充瀑布流特效,浏览更多瀑布流插件
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//Caption Sliding (Partially Hidden to Visible)
$('.boxgrid.caption').hover(function(){
$(".cover", this).stop().animate({top:'120px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'165px'},{queue:false,duration:160});
});
$('.boxgrid.captiona').hover(function(){
$(".cover", this).stop().animate({top:'378px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'427px'},{queue:false,duration:160});
});
});
</script>
<script type="text/javascript">
$(function(){
$('#brand-waterfall').waterfall();
});