开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 821|回复: 13
收起左侧

[Web源码] 试用grok写的一个404页面 挺炫酷的

[复制链接]
结帖率:88% (44/50)
发表于 2025-2-22 20:51:24 | 显示全部楼层 |阅读模式   河北省保定市
分享源码
界面截图:
是否带模块: -
备注说明: -

看x的时候,突然发现多了个grok,就试了一下,感觉还行

[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 - 页面未找到</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background: #0d0d0d;
            overflow: hidden;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        /* 动态渐变背景 */
        .background {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff007a, #00ddeb, #ffbb00, #8a2be2);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            filter: blur(80px);
            opacity: 0.8;
        }
        @keyframes gradientShift {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }
        /* 漂浮光点 */
        .glows {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .glow {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
            animation: floatGlow infinite ease-in-out;
        }
        @keyframes floatGlow {
            0% { transform: translateY(0) scale(1); opacity: 0.3; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
            100% { transform: translateY(0) scale(1); opacity: 0.3; }
        }
        /* 主容器 */
        .container {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
            max-width: 90%;
            transform: perspective(1000px) rotateX(5deg);
            animation: containerFloat 6s infinite ease-in-out;
        }
        @keyframes containerFloat {
            0%, 100% { transform: perspective(1000px) rotateX(5deg) translateY(0); }
            50% { transform: perspective(1000px) rotateX(5deg) translateY(-20px); }
        }
        h1 {
            font-size: 180px;
            margin: 0;
            color: #fff;
            text-shadow: 0 0 30px rgba(255, 0, 122, 0.8), 0 0 60px rgba(0, 221, 235, 0.6);
            letter-spacing: 5px;
            font-weight: 900;
            background: linear-gradient(90deg, #ff007a, #00ddeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGlow 4s infinite alternate;
        }
        @keyframes textGlow {
            0% { text-shadow: 0 0 30px rgba(255, 0, 122, 0.8), 0 0 60px rgba(0, 221, 235, 0.6); }
            100% { text-shadow: 0 0 50px rgba(255, 0, 122, 1), 0 0 80px rgba(0, 221, 235, 0.8); }
        }
        p {
            font-size: 28px;
            line-height: 1.6;
            color: #fff;
            margin: 30px 0;
            opacity: 0.9;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }
        a {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
            padding: 18px 40px;
            border-radius: 50px;
            background: linear-gradient(135deg, #ff007a, #00ddeb);
            box-shadow: 0 10px 30px rgba(255, 0, 122, 0.5);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        a:hover::before {
            width: 300px;
            height: 300px;
        }
        a:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 122, 0.8);
        }
        /* 移动端适配 */
        @media (max-width: 600px) {
            .container {
                padding: 40px;
            }
            h1 {
                font-size: 100px;
            }
            p {
                font-size: 20px;
            }
            a {
                padding: 14px 30px;
                font-size: 16px;
            }
        }
    </style>
</head>
<body>
    <div class="background"></div>
    <div class="glows" id="glows"></div>
    <div class="container">
        <h1>404</h1>
        <p>现实裂隙已开启,<br>此路不通,愿您找到新维度。</p>
        <a href="/">返回原点</a>
    </div>

    <script>
        // 生成漂浮光点
        const glowsDiv = document.getElementById('glows');
        const glowCount = 20;
        for (let i = 0; i < glowCount; i++) {
            const glow = document.createElement('div');
            glow.classList.add('glow');
            const size = Math.random() * 20 + 10;
            glow.style.width = `${size}px`;
            glow.style.height = glow.style.width;
            glow.style.left = `${Math.random() * 100}%`;
            glow.style.top = `${Math.random() * 100}%`;
            glow.style.animationDuration = `${Math.random() * 4 + 2}s`;
            glow.style.animationDelay = `${Math.random() * 2}s`;
            glowsDiv.appendChild(glow);
        }
    </script>
</body>
</html>


有流光缓动效果
1000003818.jpg

评分

参与人数 1好评 +1 精币 +1 收起 理由
bianyuan456 + 1 + 1 支持开源~!感谢分享

查看全部评分


结帖率:100% (6/6)
发表于 2025-2-25 11:32:14 高大上手机用户 | 显示全部楼层   安徽省淮南市
grok在哪能用,需要魔法么
回复 支持 反对

使用道具 举报

签到天数: 1 天

发表于 2025-2-24 21:37:30 | 显示全部楼层   贵州省黔南布依族苗族自治州
支持开源~!感谢分享
回复 支持 反对

使用道具 举报

结帖率:79% (15/19)

签到天数: 3 天

发表于 2025-2-24 18:15:05 | 显示全部楼层   湖南省长沙市
花里胡哨
回复 支持 反对

使用道具 举报

结帖率:33% (1/3)
发表于 2025-2-24 18:02:35 | 显示全部楼层   广东省深圳市
感谢分享,很给力!~
回复 支持 反对

使用道具 举报

结帖率:0% (0/2)
发表于 2025-2-24 09:04:38 | 显示全部楼层   广西壮族自治区玉林市
#在这里快速回复#感谢楼主分享
回复 支持 反对

使用道具 举报

结帖率:100% (4/4)

签到天数: 2 天

发表于 2025-2-24 08:39:16 | 显示全部楼层   山东省淄博市
感谢分享
回复 支持 反对

使用道具 举报

结帖率:100% (1/1)
发表于 2025-2-24 00:57:17 | 显示全部楼层   安徽省安庆市
    position: relative;             z-index: 2;             text-align: center;             padding: 80px;             background: rgba(255, 255, 255, 0.05);             backdrop-filter: blur(20px);             border: 1px solid rgba(255, 255, 255, 0.2);             border-radius: 30px;             box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);             max-width: 90%;             transform: perspective(1000px) rotateX(5deg);             animation: containerFloat 6s infinite ease-in-out;
回复 支持 反对

使用道具 举报

签到天数: 1 天

发表于 2025-2-23 11:43:41 | 显示全部楼层   浙江省衢州市
感谢分享,支持开源!!!
回复 支持 反对

使用道具 举报

结帖率:100% (6/6)

签到天数: 2 天

发表于 2025-2-23 11:30:15 | 显示全部楼层   新疆维吾尔自治区昌吉回族自治州
好看,感谢分享
回复 支持 反对

使用道具 举报

签到天数: 2 天

发表于 2025-2-23 10:06:00 | 显示全部楼层   陕西省咸阳市
新技能已get√
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
网站简介:精易论坛成立于2009年,是一个程序设计学习交流技术论坛,隶属于揭阳市揭东区精易科技有限公司所有。
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

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