jquery网站
瀑布流插件masonry
jquery网站瀑布流插件masonry是一款jquery.masonry插件。jquery瀑布流图片排列
jquery插件

jquery网站瀑布流插件masonry,浏览更多其他
瀑布流插件
$(document).ready(function(){
$(".zoom,.ilike").hide();
$(".zoom").each(function(){//遍历所有对象
var src=$(this).siblings("img").attr("src");
$(this).attr({href:src});
});
$("#nav li").click(function(){
$("#nav a").removeClass("hover");
$(this).find("a").addClass("hover");
});
$("#waterfall li").mouseover(function(){
$(this).addClass("hover");
$(this).find(".zoom,.ilike").show();
});
$("#waterfall li").mouseout(function(){
$(this).removeClass("hover");
$(this).find(".zoom,.ilike").hide();
});
});
</script>