当前位置: 首页 > article >正文

5KB实现html+js+css+json无限极分类展现带连线完整实例

适用场景 省市县多级分类,文件夹目录,族谱瓜瓞图,多级分类的展现。

经典代码:5KB实现html+js+css+json无限极分类展现带连线完整实例


<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>无限级树形图</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f0f0f0;
            height: 100vh;
            margin: 0;
        }

        .tree-container {
            width: 88.88%;
            padding: 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            height: 88vh;
        }

        .node {
            list-style-type: none;
            padding: 2px 8px;
            position: relative;
        }

        /* 连接线样式 */
        .node:before {
            content: '';
            position: absolute;
            top: 12px;
            left: -18px;
            width: 25px;
            height: 1px;
            background-color: #333;
        }

        .children {
            display: block; /* 默认展开 */
            padding-left: 28px;
            position: relative;
        }

        /* 同级连接线 */
        .children:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 10px;
            width: 1px;
            background-color: #333;
        }

        /* 树节点样式 */
        .node-toggle {
            cursor: pointer;
            font-weight: bold;
            color: #007BFF;
        }
    </style>
</head>
<body>

<div class="tree-container" id="treeContainer"></div>

<script>
    // 示例 JSON 数据
    const locationData = [
        {
            name: "亚洲",
            children: [
                {
                    name: "中国",
                    children: [
                        {
                            name: "北京市",
                            children: [
                                { name: "东城区" },
                                { name: "西城区" },
                                { name: "朝阳区" }
                            ]
                        },
                        {
                            name: "广东省",
                            children: [
                                {
                                    name: "广州市",
                                    children: [
                                        { name: "天河区" },
                                        { name: "越秀区" }
                                    ]
                                },
                                {
                                    name: "深圳市",
                                    children: [
                                        { name: "南山区" },
                                        { name: "福田区" }
                                    ]
                                }
                            ]
                        }
                    ]
                }
            ]
        }
    ];

    // 创建树节点的递归函数
    function createTreeNode(data) {
        const nodeElement = document.createElement("li");
        nodeElement.classList.add("node", "expanded");

        // 创建节点名称元素
        const nodeLabel = document.createElement("span");
        nodeLabel.classList.add("node-toggle");
        nodeLabel.innerText = data.name;

        // 如果有子节点,添加子节点容器并递归创建子节点
        if (data.children && data.children.length > 0) {
            const childrenContainer = document.createElement("ul");
            childrenContainer.classList.add("children");

            // 递归生成子节点
            data.children.forEach(child => {
                const childNode = createTreeNode(child);
                childrenContainer.appendChild(childNode);
            });

            nodeElement.appendChild(nodeLabel);
            nodeElement.appendChild(childrenContainer);
        } else {
            // 如果没有子节点,直接添加标签
            nodeElement.appendChild(nodeLabel);
        }

        return nodeElement;
    }

    // 渲染树结构
    function renderTree(data, container) {
        const treeRoot = document.createElement("ul");
        data.forEach(item => {
            const treeNode = createTreeNode(item);
            treeRoot.appendChild(treeNode);
        });
        container.appendChild(treeRoot);
    }

    // 获取树容器
    const treeContainer = document.getElementById("treeContainer");

    // 初始化树
    renderTree(locationData, treeContainer);
</script>

</body>
</html>


http://www.kler.cn/a/370134.html

相关文章:

  • C语言程序设计十大排序—选择排序
  • (二叉树)
  • 工业相机 SDK 二次开发-Halcon 插件
  • 《Effective Java》学习笔记——第2部分 对象通用方法最佳实践
  • 智能新浪潮:亚马逊云科技发布Amazon Nova模型
  • C语言之图像文件的属性
  • vue中elementUI的el-select下拉框的层级太高修改设置!
  • el-menu,菜单折叠后菜单项文字不隐藏
  • Makefile Npm
  • 【香蕉成熟度数据集】香蕉新鲜腐烂识别检测 目标检测 机器视觉 (含数据集)
  • 51单片机应用开发---定时器(定时1S,LED以1S间隔闪烁)
  • VulkanTutorial(8·Shader modules)
  • 如何加速你的 JavaScript【Part 4】:减少 DOM 操作
  • Ubuntu:docker 安装和使用
  • windows 编译 breadpad
  • 深度学习-学习率调整策略
  • 15分钟学 Go 第 22 天:包的使用
  • gymnasium代码运行
  • vue3使用vuedraggable 实现页面div拖拽和缓存
  • 算法4之链表
  • 纯血鸿蒙:国产操作系统的崛起与安卓的本质区别
  • IMX6ULL裸机-ARM内部寄存器
  • 【vue】树的初始化展开
  • 前端部署遇到的坑,记录步骤;阿里云服务器端口无法访问
  • 如何处理视频里的背景噪音?去除噪音步骤
  • [论文精读]Pisces: Efficient Federated Learning via GuidedAsynchronous Training