原生js生成九宫格布局

 ̄綄美尐妖づ 提交于 2020-02-14 08:27:35

话不多说,直接上图
在这里插入图片描述在这里插入图片描述
点击3列,他就变成3列布局
点击4列,变成四列
先来看html代码

<style>
        *{
            padding: 0;
            margin: 0;
        }
        #content{
            margin-top: 20px;
            position: relative;
        }
        #content .box{
            width: 100px;
            height: 200px;
            margin: 5px 0;
            border: 1px solid red;
        }
    </style>
    <div id="btns">
        <button>3</button>
        <button>4</button>
        <button>5</button>
    </div>
    <div id="content"><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div><div class="box"></div <div class="box"></div><div class="box"></div>
    </div>

下面是js

 window.onload = function(){
            var btns = document.getElementById("btns").children;
            var nodes = document.getElementById("content");
            console.log(btns,nodes);

            btns[0].onclick = function(){
                j_flex(10,3,nodes);
            } 
            btns[1].onclick = function(){
                j_flex(10,4,nodes);
            }
            btns[2].onclick = function(){
                j_flex(10,5,nodes);
            }
            
            function j_flex(marginXY,cols,nodes){
                // cols 需要变成几列的值
                // nodes 操作的节点
                // boxW,boxH 是盒子宽高
                var boxW = 100, boxH = 200;

                for(var i =0; i<nodes.children.length; i++){
                    var row = parseInt( i / cols); // 行数除以列数  求出行数
                    var col = parseInt( i % cols); // 行数对列数取余  求出列数
                    
                    var currentBox = nodes.children[ i ]; // 需要变化的格子
                    currentBox.style.position = 'absolute';// 绝对定位
                    currentBox.style.left = col * (boxW + marginXY) + 'px'; // 左边位置
                    currentBox.style.top = row * (boxH + marginXY) + 'px';  // 上边位置
                }
            }

        }

在这里面 j_flex (),是我封装的js,需要用到时,就只需要遍历按钮数组,然后每个调用一次,传入间距,需要多少列,然后操作的盒子box,即可完成。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!