系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络编程 > JavaScript > 详细页面

JS实现瀑布流效果

时间:2020-03-07来源:电脑系统城作者:电脑系统城

本文实例为大家分享了JS实现瀑布流效果的具体代码,供大家参考,具体内容如下

话不多说,直接上代码。如下:

CSS部分:


 
  1. <style>
  2. .cont{margin: 0 auto;position: relative;}
  3. .box{float: left;padding: 4px;}
  4. .imgbox{ padding: 4px;}
  5. .imgbox img{width: 200px;display: block;border-radius: 4px;}
  6. </style>

HTML部分(图片可自行添加):


 
  1. <div class="cont">
  2. <div class="box">
  3. <div class="imgbox">
  4. <img src="../img/WaterF2.jpg" alt="JS实现瀑布流效果">
  5. </div>
  6. </div>
  7. <div class="box">
  8. <div class="imgbox">
  9. <img src="../img/WaterF1.jpg" alt="JS实现瀑布流效果">
  10. </div>
  11. </div>
  12. // ...
  13. </div>

JS部分:


 
  1. <script>
  2. onload = function(){
  3. var wf = new WaterF();
  4. wf.init();
  5. }
  6. class WaterF{
  7. constructor(){
  8. this.clientW = document.documentElement.clientWidth;
  9. this.abox = document.querySelectorAll(".box");
  10. this.cont = document.querySelector(".cont");
  11. }
  12. init(){
  13. // 根据屏幕的宽度 / 任意一个结构的宽度,得到一行最多能放多少个图片
  14. this.maxNum = parseInt(this.clientW / this.abox[0].offsetWidth);
  15. // 根据一行能放置的个数 * 任意一张图片的宽度,得到了外框的真正的宽度
  16. this.cont.style.width = this.maxNum * this.abox[0].offsetWidth + "px";
  17. // 完善布局之后,开始区分第一行和后面的行
  18. this.firstLine();
  19. this.otherLine();
  20. }
  21. firstLine(){
  22. // 第一行,获取所有元素的高度放在一个数组中,准备获取最小值
  23. this.heightArr = [];
  24. for(var i=0;i<this.maxNum;i++){
  25. this.heightArr.push(this.abox[i].offsetHeight);
  26. }
  27. }
  28. otherLine(){
  29. // 需要拿到后面行的所有元素
  30. for(var i=this.maxNum;i<this.abox.length;i++){
  31. var min = getMin(this.heightArr);
  32. var minIndex = this.heightArr.indexOf(min);
  33. // 设置定位
  34. this.abox[i].style.position = "absolute";
  35. // 根据最小值设置top
  36. this.abox[i].style.top = min + "px";
  37. // 根据最小值的索引设置left
  38. this.abox[i].style.left = minIndex * this.abox[0].offsetWidth + "px";
  39. // 修改最小值为,原来的数据+当前新放置元素的高度
  40. this.heightArr[minIndex] = this.heightArr[minIndex] + this.abox[i].offsetHeight;
  41. }
  42. }
  43. }
  44. function getMin(arr){
  45. var myarr = [];
  46. for(var j=0;j<arr.length;j++){
  47. myarr.push(arr[j]);
  48. }
  49. return myarr.sort((a,b)=>a-b)[0];
  50. }
  51. </script>

效果:

JS实现瀑布流效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载