JSは滝の流れの効果を実現します。
本論文の実例はJSが滝の流れの効果を実現する具体的なコードを共有しています。
話を多くしないで、直接コードをかけます。以下のとおりです
CSS部分:
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
話を多くしないで、直接コードをかけます。以下のとおりです
CSS部分:
<style>
.cont{margin: 0 auto;position: relative;}
.box{float: left;padding: 4px;}
.imgbox{ padding: 4px;}
.imgbox img{width: 200px;display: block;border-radius: 4px;}
</style>
HTML部分(写真は自分で追加できます):
<div class="cont">
<div class="box">
<div class="imgbox">
<img src="../img/WaterF2.jpg" alt="">
</div>
</div>
<div class="box">
<div class="imgbox">
<img src="../img/WaterF1.jpg" alt="">
</div>
</div>
// ...
</div>
JS部分:
<script>
onload = function(){
var wf = new WaterF();
wf.init();
}
class WaterF{
constructor(){
this.clientW = document.documentElement.clientWidth;
this.abox = document.querySelectorAll(".box");
this.cont = document.querySelector(".cont");
}
init(){
// / ,
this.maxNum = parseInt(this.clientW / this.abox[0].offsetWidth);
// * ,
this.cont.style.width = this.maxNum * this.abox[0].offsetWidth + "px";
// ,
this.firstLine();
this.otherLine();
}
firstLine(){
// , ,
this.heightArr = [];
for(var i=0;i<this.maxNum;i++){
this.heightArr.push(this.abox[i].offsetHeight);
}
}
otherLine(){
//
for(var i=this.maxNum;i<this.abox.length;i++){
var min = getMin(this.heightArr);
var minIndex = this.heightArr.indexOf(min);
//
this.abox[i].style.position = "absolute";
// top
this.abox[i].style.top = min + "px";
// left
this.abox[i].style.left = minIndex * this.abox[0].offsetWidth + "px";
// , +
this.heightArr[minIndex] = this.heightArr[minIndex] + this.abox[i].offsetHeight;
}
}
}
function getMin(arr){
var myarr = [];
for(var j=0;j<arr.length;j++){
myarr.push(arr[j]);
}
return myarr.sort((a,b)=>a-b)[0];
}
</script>
効果:以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。