自pinterest网站爆红以来,国内一度掀起“仿PIN”狂潮,诸如花瓣、蘑菇街等等。正是如此,“瀑布流”式布局受到广大网民的青睐。众多知名JS库,也相继出现“瀑布流”布局插件,譬如jQuery的Masonry插件、KISSY的waterfall插件等。今天闲来无聊,我也自己动手弄了段原生JS代码,实现了简单的“瀑布流”布局效果,当然肯定不能和以上那些优秀插件相提并论,有兴趣的朋友,可以去看看,希望能带给你或多或少的收获。
1. js代码:
<!DOCTYPE html> <html> <head> <meta charset="utf-"> <title>Waterfall代码</title> </head> <body> <style type="text/css"> .wf-main{ position: relative; margin: auto; width: px; overflow: hidden; } .wf-main .wf-cld{ position: absolute; margin-bottom: px; padding:px px; width: px; left: -px; top: -px; line-height:px; border: px solid #; border-radius: px; background-color: #ccc; overflow: hidden; } .wf-cld .inner{ position: absolute; left: -px; top: -px; margin-bottom: px; width: px; overflow: hidden; border: px solid #f; border-radius: px; } .wf-cld .title{ margin: px; padding: px; width: px; color: #f; font-size: px; } </style> <div class="wf-main" id="wf-main"> <div class="wf-cld"><h style="color:#f">、瀑布流</h></div> <div class="wf-cld"><br></div> <div class="wf-cld"><br><br></div> <div class="wf-cld"><br><br><br></div> <div class="wf-cld"><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld" id="wf-inner"> <h class="inner title">、内部瀑布流</h> <div class="inner">-<br></div> <div class="inner">-</div> <div class="inner">-</div> <div class="inner">-</div> <div class="inner">-<br></div> <div class="inner">-</div> <div class="inner">-</div> <div class="inner">-</div> <div class="inner">-</div> </div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> <div class="wf-cld"><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div> </div> <script type="text/javascript"> function Waterfall(param){ this.id = typeof param.container == 'string' ? document.getElementById(param.container) : param.container; this.colWidth = param.colWidth; this.colCount = param.colCount || ; this.cls = param.cls && param.cls != '' ? param.cls : 'wf-cld'; this.init(); } Waterfall.prototype = { getByClass:function(cls,p){ var arr = [],reg = new RegExp("(^|\\s+)" + cls + "(\\s+|$)","g"); var nodes = p.getElementsByTagName("*"),len = nodes.length; for(var i = ; i < len; i++){ if(reg.test(nodes[i].className)){ arr.push(nodes[i]); reg.lastIndex = ; } } return arr; }, maxArr:function(arr){ var len = arr.length,temp = arr[]; for(var ii= ; ii < len; ii++){ if(temp < arr[ii]){ temp = arr[ii]; } } return temp; }, getMar:function(node){ var dis = ; if(node.currentStyle){ dis = parseInt(node.currentStyle.marginBottom); }else if(document.defaultView){ dis = parseInt(document.defaultView.getComputedStyle(node,null).marginBottom); } return dis; }, getMinCol:function(arr){ var ca = arr,cl = ca.length,temp = ca[],minc = ; for(var ci = ; ci < cl; ci++){ if(temp > ca[ci]){ temp = ca[ci]; minc = ci; } } return minc; }, init:function(){ var _this = this; var col = [],//列高 iArr = [];//索引 var nodes = _this.getByClass(_this.cls,_this.id),len = nodes.length; for(var i = ; i < _this.colCount; i++){ col[i] = ; } for(var i = ; i < len; i++){ nodes[i].h = nodes[i].offsetHeight + _this.getMar(nodes[i]); iArr[i] = i; } for(var i = ; i < len; i++){ var ming = _this.getMinCol(col); nodes[i].style.left = ming * _this.colWidth + "px"; nodes[i].style.top = col[ming] + "px"; col[ming] += nodes[i].h; } _this.id.style.height = _this.maxArr(col) + "px"; } }; new Waterfall({ "container":"wf-inner", "colWidth":, "colCount":, "cls":"inner" }); new Waterfall({ "container":"wf-main", "colWidth":, "colCount": }); </script> </body> </html>
2. [图片] 瀑布流.jpg
本文向大家介绍js瀑布流布局的实现,包括了js瀑布流布局的实现的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了js实现瀑布流布局的具体代码,供大家参考,具体内容如下 原理: 1、瀑布流布局,要求进行布局的元素等宽,然后计算元素的宽与浏览器的宽度之比,得到需要布置的列数。 2、创建一个数组,长度为列数,数组元素为每一列已布置元素的总高度。(一开始为0)。 3、将未布置的元素,依次布置到
本文向大家介绍Ionic3实现图片瀑布流布局,包括了Ionic3实现图片瀑布流布局的使用技巧和注意事项,需要的朋友参考一下 瀑布流布局是比较流行的一种网站页面布局,视觉表现为参差不齐的多栏布局,随着页面滚动条向下滚动,这种布局还会不断加载数据块并附加至当前尾部。 瀑布流布局一般使用在网页中,在移动端用的比较少但是也不可缺。下面就介绍一下如何在ionic3中使用瀑布流布局。 首先创建一个项目,这里不
本文向大家介绍js实现瀑布流布局(无限加载),包括了js实现瀑布流布局(无限加载)的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了js实现瀑布流布局的具体代码,供大家参考,具体内容如下 1.实现瀑布流布局思路 准备好数据之后 . 绑定滚动事件 . 判断页面是否到底(滚动的距离+可是区域的高度 == 最后一个元素的top) . 加载新数据,渲染新页面 .重新执行瀑布流效果 2.代码(更
本文向大家介绍瀑布流的实现方式(原生js+jquery+css3),包括了瀑布流的实现方式(原生js+jquery+css3)的使用技巧和注意事项,需要的朋友参考一下 前言 项目需求要弄个瀑布流的页面,用的是waterfall这个插件,感觉还是可以的,项目赶就没自己的动手写。最近闲来没事,就自己写个。大致思路理清楚,还是挺好实现的... 原生javascript版 jquery版本 大致思路
本文向大家介绍基于jquery实现瀑布流布局,包括了基于jquery实现瀑布流布局的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家介绍了基于jquery实现瀑布流布局的关键代码,分享给大家供大家参考,具体内容如下 效果图: 具体代码: 使用jquery-1.8.3.min.js,waterfall.js代码如下: 希望本文所述对大家学习有所帮助,谢谢大家的阅读。
本文向大家介绍IOS实现自定义布局瀑布流,包括了IOS实现自定义布局瀑布流的使用技巧和注意事项,需要的朋友参考一下 瀑布流是电商应用展示商品通常采用的一种方式,如图示例 瀑布流的实现方式,通常有以下几种 通过UITableView实现(不常用) 通过UIScrollView实现(工作量较大) 通过UICollectionView实现(通常采用的方式) 一、UICollectionView基础 1、