bootstrap配合Masonry插件实现瀑布式布局
2019/6/27 21:28:22
本文主要是介绍bootstrap配合Masonry插件实现瀑布式布局,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
问题是这样的,使用bootstrap的栅格进行布局的时候,如果大小超过了,会自动的转到下一行,但是在显示图片的时候就会出现缝隙,下面介绍masonry进行缝隙的填补。
好,下面上货。
1、首先是html
<html> <head> <title>Title</title> <meta charset="utf-8"/> <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css"/> <script type="text/javascript" src="jquery-2.1.4.min.js"></script> <script type="text/javascript" src="bootstrap/masonry-docs.min.js"></script> <script type="text/javascript" src="t.js"></script> <style type="text/css"> .container-fluid { padding: 20px; } .box { margin-bottom: 20px; float: left; width: 220px; } .box img { max-width: 100% } </style> </head> <body> <button class="btn btn-info">123</button> <div id="masonry" class="container-fluid"> <div class="box"><img src="img/p1.png">123</div> <div class="box"><img src="img/p2.png">34444444444444444444</div> <div class="box"><img src="img/p3.png">42234234</div> <div class="box"><img src="img/p4.png">234</div> <div class="box"><img src="img/p5.png">22222222222222</div> <div class="box"><img src="img/p6.png">2321213</div> </div> </body> </html>
然后是t.js
$(function() { var $container = $('#masonry'); $container.imagesLoaded(function() { $container.masonry({ itemSelector: '.box', gutter: 20, isAnimated: true, }); }); });
最后是效果图:
调整浏览器大小,让图片显示成三列:
源码下载:http://xiazai.zyiz.net/201701/yuanma/bootstrappubu(zyiz.net).rar
参考://www.zyiz.net/article/103444.htm
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持找一找教程网。
这篇关于bootstrap配合Masonry插件实现瀑布式布局的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习