当前位置:首页>网站源码>跨年祝福网页,新的一年,新的开始!!附源码!!

跨年祝福网页,新的一年,新的开始!!附源码!!

  • 2026-04-06 22:26:00
跨年祝福网页,新的一年,新的开始!!附源码!!
应粉丝要求干了一个超级好看的跨年祝福网页!!希望各位网友能喜欢!谢谢!!

   效果展示   

  完整源码   

HTML
<!DOCTYPE html><htmllang="zh-CN"><head>    <metacharset="UTF-8">    <metaname="viewport"content="width=device-width, initial-scale=1.0">    <title>2026年全年倒计时 | 记录时光</title>    <!-- 引入Tailwind CSS -->    <scriptsrc="https://cdn.tailwindcss.com"></script>    <!-- 引入字体 -->    <linkhref="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap"rel="stylesheet">    <!-- 自定义配置 -->    <script>        tailwind.config = {            theme: {                extend: {                    colors: {                        primary'#FF3E6C',                        secondary'#FFD166',                        dark'#0A0E26',                        star'#7DDDFA',                    },                    fontFamily: {                        sans: ['Noto Sans SC''sans-serif'],                    },                    animation: {                        'snowfall''snowfall 20s linear infinite',                        'pulse-slow''pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',                        'float''float 6s ease-in-out infinite',                        'countdown''countdown 0.5s ease-out',                    },                    keyframes: {                        snowfall: {                            '0%': { transform'translateY(0) rotate(0deg)' },                            '100%': { transform'translateY(100vh) rotate(360deg)' },                        },                        float: {                            '0%, 100%': { transform'translateY(0)' },                            '50%': { transform'translateY(-20px)' },                        },                        countdown: {                            '0%': { transform'scale(0.8)'opacity0 },                            '100%': { transform'scale(1)'opacity1 },                        },                    },                }            }        }    </script>    <styletype="text/tailwindcss">        @layer utilities {            .text-gradient {                background-clip: text;                -webkit-background-clip: text;                -webkit-text-fill-color: transparent;            }            .bg-stars {                background-imageradial-gradient(circle, theme('colors.star'1px, transparent 1px);                background-size50px 50px;            }            .firework-canvas {                position: fixed;                top0;                left0;                width100%;                height100%;                pointer-events: none;                z-index10;            }            .snowflake {                position: absolute;                color: white;                opacity0.7;                user-select: none;                z-index5;            }        }    </style></head><bodyclass="bg-dark bg-stars min-h-screen overflow-hidden font-sans text-white">    <!-- 烟花画布 -->    <canvasid="fireworkCanvas"class="firework-canvas"></canvas>    <!-- 雪花容器 -->    <divid="snowContainer"class="fixed inset-0 pointer-events-none"></div>    <!-- 主内容容器 -->    <divclass="relative z-20 flex flex-col items-center justify-center min-h-screen px-4">        <!-- 顶部装饰 -->        <divclass="absolute top-8 left-0 right-0 text-center">            <h2class="text-[clamp(1rem,3vw,1.5rem)] font-light text-star animate-pulse-slow">                2026年全年倒计时            </h2>        </div>        <!-- 倒计时区域 -->        <divid="countdown"class="mb-10 flex flex-wrap justify-center gap-4 md:gap-8">            <divclass="countdown-item flex flex-col items-center w-20 md:w-28">                <spanid="days"class="text-[clamp(2rem,8vw,4rem)] font-black text-gradient bg-gradient-to-r from-primary to-secondary animate-countdown">00</span>                <spanclass="mt-2 text-sm md:text-base text-gray-300"></span>            </div>            <divclass="countdown-item flex flex-col items-center w-20 md:w-28">                <spanid="hours"class="text-[clamp(2rem,8vw,4rem)] font-black text-gradient bg-gradient-to-r from-primary to-secondary animate-countdown">00</span>                <spanclass="mt-2 text-sm md:text-base text-gray-300"></span>            </div>            <divclass="countdown-item flex flex-col items-center w-20 md:w-28">                <spanid="minutes"class="text-[clamp(2rem,8vw,4rem)] font-black text-gradient bg-gradient-to-r from-primary to-secondary animate-countdown">00</span>                <spanclass="mt-2 text-sm md:text-base text-gray-300"></span>            </div>            <divclass="countdown-item flex flex-col items-center w-20 md:w-28">                <spanid="seconds"class="text-[clamp(2rem,8vw,4rem)] font-black text-gradient bg-gradient-to-r from-primary to-secondary animate-countdown">00</span>                <spanclass="mt-2 text-sm md:text-base text-gray-300"></span>            </div>        </div>        <!-- 2026主视觉 -->        <divclass="mb-8 animate-float">            <h1class="text-[clamp(5rem,20vw,12rem)] font-black text-gradient bg-gradient-to-br from-secondary via-primary to-purple-500 leading-none">                2026            </h1>        </div>        <!-- 新年祝福 -->        <divclass="text-center max-w-md mx-auto mb-12">            <pclass="text-[clamp(1rem,3vw,1.25rem)] text-gray-200 leading-relaxed">                愿新年,胜旧年<br>                三餐四季,温柔有趣<br>                奔赴下一场山海,万事皆可期            </p>        </div>        <!-- 底部提示 -->        <divclass="absolute bottom-8 text-sm text-gray-400">            <p>自动燃放烟花 · 移动鼠标生成星光 · 点击屏幕额外绽放烟花</p>        </div>        <!-- 跨年成功提示(初始隐藏) -->        <divid="celebration"class="fixed inset-0 flex flex-col items-center justify-center bg-dark/90 z-30 hidden">            <h2class="text-[clamp(3rem,15vw,8rem)] font-black text-gradient bg-gradient-to-r from-yellow-300 to-red-500 mb-4">                新年快乐!            </h2>            <pclass="text-xl text-gray-200 mb-8">2026,一切皆有可能</p>            <buttonid="resetBtn"class="px-8 py-3 bg-primary/80 hover:bg-primary rounded-full text-white font-medium transition-all">                重新倒计时            </button>        </div>    </div>    <script>        // 1. 倒计时逻辑        const targetDate = new Date('2027-01-01T00:00:00').getTime();        let countdownInterval;        // 更新倒计时        function updateCountdown() {            const now = new Date().getTime();            const distance = targetDate - now;            // 计算时间差            const days = Math.floor(distance / (1000 * 60 * 60 * 24));            const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));            const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));            const seconds = Math.floor((distance % (1000 * 60)) / 1000);            // 补零            document.getElementById('days').innerText = days.toString().padStart(2'0');            document.getElementById('hours').innerText = hours.toString().padStart(2'0');            document.getElementById('minutes').innerText = minutes.toString().padStart(2'0');            document.getElementById('seconds').innerText = seconds.toString().padStart(2'0');            // 倒计时结束            if (distance < 0) {                clearInterval(countdownInterval);                document.getElementById('countdown').classList.add('hidden');                document.getElementById('celebration').classList.remove('hidden');                // 触发全屏烟花                createFirework(targetDate, true);            }        }        // 重置倒计时        document.getElementById('resetBtn').addEventListener('click'() => {            document.getElementById('celebration').classList.add('hidden');            document.getElementById('countdown').classList.remove('hidden');            startCountdown();            // 重置后重新启动自动烟花            setTimeout(autoFirework, 1000);        });        // 启动倒计时        function startCountdown() {            updateCountdown();            countdownInterval = setInterval(updateCountdown, 1000);        }        // 2. 雪花生成        function createSnowflakes() {            const snowContainer = document.getElementById('snowContainer');            const snowflakeCount = window.innerWidth / 8// 根据屏幕宽度调整数量            // 清空现有雪花            snowContainer.innerHTML = '';            for (let i = 0; i < snowflakeCount; i++) {                const snowflake = document.createElement('div');                snowflake.classList.add('snowflake');                // 随机字符(雪花/圆点)                const snowChars = ['❄️''❅''❆''•''✧'];                snowflake.innerText = snowChars[Math.floor(Math.random() * snowChars.length)];                // 随机样式                const size = Math.random() * 10 + 5// 5-15px                snowflake.style.fontSize = `${size}px`;                snowflake.style.left = `${Math.random() * 100}%`;                snowflake.style.top = `${Math.random() * -100}px`;                snowflake.style.animationDuration = `${Math.random() * 20 + 10}s`// 10-30s                snowflake.style.animationDelay = `${Math.random() * 20}s`;                snowflake.style.opacity = Math.random() * 0.8 + 0.2// 0.2-1                snowflake.style.animation = `snowfall ${Math.random() * 20 + 10}s linear infinite`;                snowContainer.appendChild(snowflake);            }        }        // 3. 烟花动画(Canvas)        const canvas = document.getElementById('fireworkCanvas');        const ctx = canvas.getContext('2d');        let particles = [];        // 4. 祝福语弹幕        const wishes = [            '新年快乐!',            '2026万事如意!',            '身体健康,阖家幸福!',            '事业有成,财源广进!',            '心想事成,美梦成真!',            '步步高升,一帆风顺!',            '岁岁平安,年年有余!',            '吉星高照,鸿运当头!',            '笑口常开,好运连连!',            '青春永驻,美丽常在!',            '学业进步,前程似锦!',            '爱情甜蜜,幸福美满!',            '家庭和睦,邻里和谐!',            '生意兴隆,财源滚滚!',            '工作顺利,步步高升!',            '身体健康,心情愉快!',            '万事如意,心想事成!',            '年年有今日,岁岁有今朝!',            '新年新气象,好运好风光!',            '恭喜发财,红包拿来!'        ];        // 创建弹幕元素        function createWish() {            const wishElement = document.createElement('div');            wishElement.classList.add('absolute''z-20''pointer-events-none''text-white''font-medium');            // 随机选择祝福语            const wishText = wishes[Math.floor(Math.random() * wishes.length)];            wishElement.innerText = wishText;            // 随机样式            const size = Math.random() * 16 + 12// 12-28px            wishElement.style.fontSize = `${size}px`;            // 随机颜色            const colors = ['#FF3E6C''#FFD166''#7DDDFA''#A78BFA''#F472B6''#06D6A0''#118AB2''#073B4C'];            wishElement.style.color = colors[Math.floor(Math.random() * colors.length)];            // 随机透明度            wishElement.style.opacity = Math.random() * 0.8 + 0.2;            // 随机方向(从左到右或从右到左)            const direction = Math.random() > 0.5 ? 'left' : 'right';            if (direction === 'left') {                wishElement.style.left = '-100px';                wishElement.style.right = 'auto';            } else {                wishElement.style.right = '-100px';                wishElement.style.left = 'auto';            }            // 随机垂直位置            wishElement.style.top = `${Math.random() * window.innerHeight}px`;            // 添加动画            const duration = Math.random() * 10 + 5// 5-15秒            const delay = Math.random() * 2// 0-2秒延迟            wishElement.style.transition = `all ${duration}s linear ${delay}s`;            // 添加到页面            document.body.appendChild(wishElement);            // 触发动画            setTimeout(() => {                if (direction === 'left') {                    wishElement.style.left = `${window.innerWidth + 100}px`;                } else {                    wishElement.style.right = `${window.innerWidth + 100}px`;                }            }, 100);            // 动画结束后移除元素            setTimeout(() => {                wishElement.remove();            }, (duration + delay) * 1000);        }        // 自动生成弹幕        function autoWish() {            createWish();            // 随机间隔(0.5-2秒)            const randomDelay = Math.random() * 1500 + 500;            setTimeout(autoWish, randomDelay);        }        // 调整Canvas尺寸        function resizeCanvas() {            canvas.width = window.innerWidth;            canvas.height = window.innerHeight;        }        window.addEventListener('resize'() => {            resizeCanvas();            createSnowflakes(); // 重新生成雪花        });        // 粒子类        class Particle {            constructor(x, y, color, isCelebration = false) {                this.x = x;                this.y = y;                this.speed = isCelebration ? Math.random() * 8 + 5 : Math.random() * 6 + 2;                this.angle = Math.random() * Math.PI * 2;                this.gravity = 0.05;                this.vx = Math.cos(this.angle) * this.speed;                this.vy = Math.sin(this.angle) * this.speed;                this.alpha = 1;                this.decay = Math.random() * 0.01 + 0.005;                this.color = color;                this.isCelebration = isCelebration;            }            update() {                // 重力影响                this.vy += this.gravity;                // 空气阻力                this.vx *= 0.98;                this.vy *= 0.98;                this.x += this.vx;                this.y += this.vy;                // 透明度衰减                this.alpha -= this.decay;            }            draw() {                ctx.save();                ctx.globalAlpha = this.alpha;                ctx.beginPath();                ctx.arc(this.xthis.ythis.isCelebration ? 3 : 20Math.PI * 2);                ctx.fillStyle = this.color;                ctx.fill();                ctx.restore();            }        }        // 创建烟花        function createFirework(e, isCelebration = false) {            // 坐标处理(点击事件/庆祝模式)            let x, y;            if (isCelebration) {                x = canvas.width / 2;                y = canvas.height / 2;                // 庆祝模式生成多个烟花                for (let i = 0; i < 20; i++) {                    setTimeout(() => {                        createSingleFirework(                            Math.random() * canvas.width,                            Math.random() * canvas.height,                            isCelebration                        );                    }, i * 100);                }            } else {                x = e.clientX;                y = e.clientY;                createSingleFirework(x, y, isCelebration);            }        }        // 创建单个烟花        function createSingleFirework(x, y, isCelebration) {            // 随机颜色            const colors = ['#FF3E6C''#FFD166''#7DDDFA''#A78BFA''#F472B6''#06D6A0''#118AB2''#073B4C'];            const color = colors[Math.floor(Math.random() * colors.length)];            // 生成粒子数量(增加数量)            const particleCount = isCelebration ? 200 : 120;            // 创建粒子            for (let i = 0; i < particleCount; i++) {                particles.push(new Particle(x, y, color, isCelebration));            }        }        // 鼠标移动生成小粒子        function createMouseParticles(e) {            const x = e.clientX;            const y = e.clientY;            const color = '#7DDDFA';            // 少量小粒子            for (let i = 0; i < 3; i++) {                particles.push(new Particle(x, y, color, false));                particles[particles.length - 1].speed = Math.random() * 2 + 1;                particles[particles.length - 1].decay = Math.random() * 0.02 + 0.01;            }        }        // 自动随机燃放烟花        function autoFirework() {            // 随机生成画布内的坐标(避开边缘,视觉效果更好)            const x = Math.random() * (canvas.width - 100) + 50;            const y = Math.random() * (canvas.height - 100) + 50;            // 30%概率生成更大的烟花,增加视觉层次            const isBigFirework = Math.random() > 0.7;            // 创建单个烟花            createSingleFirework(x, y, isBigFirework);            // 随机间隔(0.5-3秒)递归调用,让燃放效果更频繁            const randomDelay = Math.random() * 2500 + 500// 500-3000毫秒            setTimeout(autoFirework, randomDelay);        }        // 动画循环        function animate() {            // 半透明背景,实现拖影效果            ctx.fillStyle = 'rgba(10, 14, 38, 0.1)';            ctx.fillRect(00, canvas.width, canvas.height);            // 更新和绘制粒子            for (let i = particles.length - 1; i >= 0; i--) {                const p = particles[i];                p.update();                p.draw();                // 移除透明的粒子                if (p.alpha <= 0) {                    particles.splice(i, 1);                }            }            requestAnimationFrame(animate);        }        // 初始化        window.addEventListener('load'() => {            resizeCanvas();            startCountdown();            createSnowflakes();            animate();            // 启动自动烟花            autoFirework();            // 启动自动弹幕            autoWish();            // 点击生成烟花(保留手动触发)            document.addEventListener('click'(e) => createFirework(e));            // 鼠标移动生成小粒子            document.addEventListener('mousemove'(e) => {                // 节流,避免性能问题                if (Math.random() > 0.7) {                    createMouseParticles(e);                }            });        });    </script></body></html>

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-07 22:25:08 HTTP/2.0 GET : https://g.sjds.net/a/457980.html
  2. 运行时间 : 0.256169s [ 吞吐率:3.90req/s ] 内存消耗:4,455.77kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=b34b869b0046e179d3c71a3a5bd27de3
  1. /yingpanguazai/ssd/ssd1/www/g.sjds.net/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/g.sjds.net/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/g.sjds.net/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/g.sjds.net/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/g.sjds.net/runtime/temp/8321bd4d2de6fe7dffb246d4ae0c61fd.php ( 12.06 KB )
  140. /yingpanguazai/ssd/ssd1/www/g.sjds.net/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000589s ] mysql:host=127.0.0.1;port=3306;dbname=g_sjds;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001006s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000389s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000319s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000616s ]
  6. SELECT * FROM `set` [ RunTime:0.014160s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000794s ]
  8. SELECT * FROM `article` WHERE `id` = 457980 LIMIT 1 [ RunTime:0.001482s ]
  9. UPDATE `article` SET `lasttime` = 1775571908 WHERE `id` = 457980 [ RunTime:0.000666s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 64 LIMIT 1 [ RunTime:0.002006s ]
  11. SELECT * FROM `article` WHERE `id` < 457980 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.006074s ]
  12. SELECT * FROM `article` WHERE `id` > 457980 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.014522s ]
  13. SELECT * FROM `article` WHERE `id` < 457980 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.027161s ]
  14. SELECT * FROM `article` WHERE `id` < 457980 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.013297s ]
  15. SELECT * FROM `article` WHERE `id` < 457980 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.022609s ]
0.263365s