吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 901|回复: 10
上一主题 下一主题
收起左侧

[其他原创] 闲来无聊写个简单的html5用餐座次图生成器

[复制链接]
跳转到指定楼层
楼主
bloodfog 发表于 2024-6-30 13:57 回帖奖励
本帖最后由 bloodfog 于 2024-6-30 15:18 编辑

闲来无聊写个简单的html5用餐座次图生成器
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.7, maximum-scale=0.7, user-scalable=yes"/>
    <title>用餐座次图</title>
    <style>
        body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
        }
        #input-form {
            margin-bottom: 20px;
            text-align: center;
        }
        #form-elements {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        #form-elements input,
        #form-elements button {
            padding: 4px;
            font-weight: bold;
            border: 1px solid #88c416;
            color: #88c416;
        }
        #form-elements input {
            height: 20px;
            color: #88c416;
        }
        #form-elements button {
            cursor: pointer;
            height: 30px;
        }
        #seating {
            position: relative;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background-color: #3399FF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            font-weight: bold;
        }
        .seat {
            position: absolute;
            width: 60px;
            height: 30px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #88c416;
            border-radius: 10px;
            cursor: pointer;
        }
        .seat input {
            border: none;
            background: transparent;
            width: 100%;
            text-align: center;
        }
        #share-button {
            border: none;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }
        #share-button:active {
            background-color: #66a312;
        }
        @media print {
            #share-button, #input-form, button, label {
                display: none;
            }
            body {-webkit-print-color-adjust: exact;}
        }
    </style>
</head>
<body>
    <form id="input-form">
        <label for="table-info" style="color:#66CC00; height:25px; line-height:25px; font-weight:bold; padding:10px;">可拖动人员互换位置,手机端手指在姓名上停留一会在拖动</label><br><br>
        <div id="form-elements">
            <input type="text" id="table-info" required placeholder="桌号信息">
            <input type="text" id="names" required placeholder="张三、李四、王二">
            <button type="submit">生成座次</button> <button id="share-button">分享链接</button>
        </div>
    </form>
    <div id="seating">
        <div id="table-info-display"></div>
    </div><label style="color:#CCCCCC; height:25px; line-height:25px; padding:10px; font-size:10px;">&#169; RainMan</label>
    <script>
        document.getElementById('input-form').addEventListener('submit', function(event) {
            event.preventDefault();
            const tableInfo = document.getElementById('table-info').value;
            const names = document.getElementById('names').value.split(/[,,、]/).map(name => name.trim());
            document.getElementById('table-info-display').textContent = `${tableInfo} (${names.length}人)`;
            generateSeating(names);
            updateShareLink(tableInfo, names);
        });

        function generateSeating(names) {
            const seating = document.getElementById('seating');
            const existingSeats = seating.querySelectorAll('.seat');
            existingSeats.forEach(seat => seat.remove());

            const numPeople = names.length;
            const angleStep = (2 * Math.PI) / numPeople;
            for (let i = 0; i < numPeople; i++) {
                const angle = i * angleStep - (Math.PI / 2);
                const x = 250 + 200 * Math.cos(angle);
                const y = 250 + 200 * Math.sin(angle);
                const seat = document.createElement('div');
                seat.classList.add('seat');
                seat.style.left = `${x - 30}px`;
                seat.style.top = `${y - 15}px`;
                seat.setAttribute('draggable', 'true');
                seat.addEventListener('dragstart', dragStart);
                seat.addEventListener('dragover', dragOver);
                seat.addEventListener('drop', drop);
                seat.addEventListener('dragend', dragEnd);

                // 添加触摸事件
                seat.addEventListener('touchstart', touchStart);
                seat.addEventListener('touchmove', touchMove);
                seat.addEventListener('touchend', touchEnd);

                const input = document.createElement('input');
                input.type = 'text';
                input.value = names[i];
                input.addEventListener('input', updateNamesList);
                seat.appendChild(input);

                seating.appendChild(seat);
            }
        }

        function updateNamesList() {
            const seats = document.querySelectorAll('.seat input');
            const names = Array.from(seats).map(input => input.value.trim());
            document.getElementById('names').value = names.join('、');
            const tableInfo = document.getElementById('table-info').value;
            document.getElementById('table-info-display').textContent = `${tableInfo} (${names.filter(name => name !== '').length}人)`;
            updateShareLink(tableInfo, names);
        }

        function updateShareLink(tableInfo, names) {
            const baseUrl = window.location.origin + window.location.pathname;
            const urlParams = new URLSearchParams();
            urlParams.set('tableInfo', tableInfo);
            urlParams.set('names', names.join('、'));
            const shareLink = `${baseUrl}?${urlParams.toString()}`;
            const shareButton = document.getElementById('share-button');
            shareButton.onclick = () => {
                if (!tableInfo.trim() || names.filter(name => name.trim() !== '').length === 0) {
                    alert('请先填写桌号和姓名信息');
                    return;
                }
                navigator.clipboard.writeText(shareLink).then(() => {
                    alert('分享链接已复制到剪切板');
                }).catch(err => {
                    alert('复制失败,请手动复制链接');
                    console.error('Could not copy text: ', err);
                });
            };
        }

        function loadFromURL() {
            const urlParams = new URLSearchParams(window.location.search);
            const tableInfo = urlParams.get('tableInfo');
            const names = urlParams.get('names');
            if (tableInfo && names) {
                document.getElementById('table-info').value = tableInfo;
                document.getElementById('names').value = names;
                document.getElementById('table-info-display').textContent = `${tableInfo} (${names.split('、').filter(name => name !== '').length}人)`;
                generateSeating(names.split('、'));
            }
        }

        let draggedInput;
        let touchStartX, touchStartY;

        function dragStart(event) {
            draggedInput = event.target.querySelector('input');
            event.dataTransfer.effectAllowed = 'move';
        }

        function dragOver(event) {
            event.preventDefault();
        }

        function drop(event) {
            event.preventDefault();
            const targetInput = event.target.closest('.seat').querySelector('input');
            if (targetInput && targetInput !== draggedInput) {
                const tempValue = draggedInput.value;
                draggedInput.value = targetInput.value;
                targetInput.value = tempValue;
                updateNamesList();
            }
        }

        function dragEnd() {
            draggedInput = null;
        }

        function touchStart(event) {
            const touch = event.touches[0];
            touchStartX = touch.clientX;
            touchStartY = touch.clientY;
            draggedInput = event.target.querySelector('input');
        }

        function touchMove(event) {
            event.preventDefault();
            const touch = event.touches[0];
            const target = document.elementFromPoint(touch.clientX, touch.clientY);
            if (target && target.closest('.seat') && target.closest('.seat') !== draggedInput.closest('.seat')) {
                const targetInput = target.closest('.seat').querySelector('input');
                if (targetInput && targetInput !== draggedInput) {
                    const tempValue = draggedInput.value;
                    draggedInput.value = targetInput.value;
                    targetInput.value = tempValue;
                    updateNamesList();
                }
            }
        }

        function touchEnd() {
            draggedInput = null;
        }

        loadFromURL();
    </script>
</body>
</html>

免费评分

参与人数 2吾爱币 +8 热心值 +2 收起 理由
Jason8095 + 1 + 1 谢谢@Thanks!
苏紫方璇 + 7 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

沙发
xu2006 发表于 2024-6-30 15:29
点赞收藏,后学习
3#
lcdeyhy 发表于 2024-6-30 15:37
4#
Pwaerm 发表于 2024-6-30 16:14
5#
O2H2O 发表于 2024-6-30 16:26
小白提问:要怎么使用呀?
6#
Yifan2007 发表于 2024-6-30 17:09
O2H2O 发表于 2024-6-30 16:26
小白提问:要怎么使用呀?

在vscode里面新建python项目,运行就行了
7#
 楼主| bloodfog 发表于 2024-6-30 17:28 |楼主
O2H2O 发表于 2024-6-30 16:26
小白提问:要怎么使用呀?

复制代码到txt文本,修改后缀.htm 浏览器中运行
8#
kangta520 发表于 2024-6-30 19:33
不错,看起来使用
9#
shubiao05 发表于 2024-6-30 20:17
不错,不错,相当不错!
感谢分享!
10#
liuam428 发表于 2024-7-1 10:36
不错,谢谢分享。。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-7-2 13:55

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表