开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

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


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

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

12
返回列表 发新帖
楼主: 呓语丶
收起左侧

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

[复制链接]
结帖率:88% (44/50)
 楼主| 发表于 2025-2-22 21:10:08 | 显示全部楼层   河北省保定市
cunanhai 发表于 2025-2-22 21:01
背景再虚幻点就好了,现在只是模糊,没有深度的感觉,我的意思是 当你在凝视深渊的时候,深渊也正在凝视着你  ...

刚刚让ai改成个人主页了   按你说的发给ai改了一下,这样的

[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>关于我 - 个人简介</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%;
            z-index: 0;
            perspective: 1000px;
        }
        .abyss-layer {
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: radial-gradient(circle, rgba(255, 0, 122, 0.5) 0%, transparent 70%);
            filter: blur(50px);
            opacity: 0.6;
            animation: abyssFlow 25s infinite ease-in-out;
        }
        .abyss-layer:nth-child(2) {
            background: radial-gradient(circle, rgba(0, 221, 235, 0.4) 0%, transparent 60%);
            filter: blur(70px);
            opacity: 0.5;
            animation: abyssFlowReverse 35s infinite ease-in-out;
        }
        .abyss-layer:nth-child(3) {
            background: radial-gradient(circle, rgba(255, 187, 0, 0.3) 0%, transparent 80%);
            filter: blur(90px);
            opacity: 0.4;
            animation: abyssPulse 45s infinite ease-in-out;
        }
        @keyframes abyssFlow {
            0% { transform: translateZ(-200px) translate(0, 0); opacity: 0.6; }
            50% { transform: translateZ(-200px) translate(-15%, 10%); opacity: 0.8; }
            100% { transform: translateZ(-200px) translate(0, 0); opacity: 0.6; }
        }
        @keyframes abyssFlowReverse {
            0% { transform: translateZ(-300px) translate(0, 0); opacity: 0.5; }
            50% { transform: translateZ(-300px) translate(15%, -10%); opacity: 0.7; }
            100% { transform: translateZ(-300px) translate(0, 0); opacity: 0.5; }
        }
        @keyframes abyssPulse {
            0% { transform: translateZ(-400px) scale(1); opacity: 0.4; }
            50% { transform: translateZ(-400px) scale(1.15); opacity: 0.6; }
            100% { transform: translateZ(-400px) scale(1); opacity: 0.4; }
        }
        /* 漂浮粒子 */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            animation: softFloat infinite ease-in-out;
        }
        @keyframes softFloat {
            0% { transform: translateY(0) scale(1); opacity: 0.4; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
            100% { transform: translateY(0) scale(1); opacity: 0.4; }
        }
        /* 主容器 */
        .container {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 50px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
            max-width: 700px;
            animation: gentleRise 5s infinite ease-in-out;
        }
        @keyframes gentleRise {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        /* 头像 */
        .avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: url('https://pbs.twimg.com/profile_images/1759733959399272448/jtJAJKTS_400x400.jpg') center/cover no-repeat;
            box-shadow: 0 5px 20px rgba(255, 0, 122, 0.5);
            border: 3px solid rgba(255, 255, 255, 0.8);
        }
        /* 姓名 */
        h1 {
            font-size: 48px;
            margin: 10px 0;
            color: #fff;
            text-shadow: 0 0 20px rgba(255, 0, 122, 0.8), 0 0 40px rgba(0, 221, 235, 0.6);
            letter-spacing: 2px;
            font-weight: 700;
            background: linear-gradient(90deg, #ff007a, #00ddeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* 简介 */
        .bio {
            font-size: 20px;
            line-height: 1.6;
            color: #eee;
            margin: 20px 0;
            opacity: 0.9;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        /* 技能标签 */
        .skills {
            margin: 20px 0;
        }
        .skill {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 8px 16px;
            margin: 5px;
            border-radius: 20px;
            font-size: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        /* 社交链接 */
        .social-links {
            margin-top: 30px;
        }
        .social-link {
            text-decoration: none;
            color: #fff;
            font-weight: bold;
            font-size: 16px;
            padding: 12px 25px;
            border-radius: 30px;
            background: linear-gradient(135deg, #ff007a, #00ddeb);
            box-shadow: 0 5px 15px rgba(255, 0, 122, 0.5);
            transition: all 0.4s ease;
            margin: 0 10px;
            position: relative;
            overflow: hidden;
        }
        .social-link::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.5s ease, height 0.5s ease;
        }
        .social-link:hover::before {
            width: 200px;
            height: 200px;
        }
        .social-link:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 0, 122, 0.7);
        }
        /* 移动端适配 */
        @media (max-width: 600px) {
            .container {
                padding: 30px;
            }
            .avatar {
                width: 100px;
                height: 100px;
            }
            h1 {
                font-size: 36px;
            }
            .bio {
                font-size: 16px;
            }
            .skill {
                font-size: 12px;
                padding: 6px 12px;
            }
            .social-link {
                padding: 10px 20px;
                font-size: 14px;
                margin: 5px;
            }
        }
    </style>
</head>
<body>
    <div class="background">
        <div class="abyss-layer"></div>
        <div class="abyss-layer"></div>
        <div class="abyss-layer"></div>
    </div>
    <div class="particles" id="particles"></div>
    <div class="container">
        <div class="avatar"></div>
        <h1>张三</h1>
        <p class="bio">
            你好!我是一个热爱创造的前端开发者,喜欢将代码与设计融合,打造优雅而实用的作品。生活中的我喜欢旅行、摄影和品尝咖啡。
        </p>
        <div class="skills">
            <span class="skill">HTML/CSS</span>
            <span class="skill">JavaScript</span>
            <span class="skill">React</span>
            <span class="skill">UI/UX</span>
        </div>
        <div class="social-links">
            <a  target="_blank" class="social-link">GitHub</a>
            <a  target="_blank" class="social-link">Twitter</a>
            <a href="mailto:example@email.com" class="social-link">Email</a>
        </div>
    </div>

    <script>
        // 生成漂浮粒子
        const particlesDiv = document.getElementById('particles');
        const particleCount = 15;
        for (let i = 0; i < particleCount; i++) {
            const particle = document.createElement('div');
            particle.classList.add('particle');
            const size = Math.random() * 15 + 5;
            particle.style.width = `${size}px`;
            particle.style.height = particle.style.width;
            particle.style.left = `${Math.random() * 100}%`;
            particle.style.top = `${Math.random() * 100}%`;
            particle.style.animationDuration = `${Math.random() * 5 + 3}s`;
            particle.style.animationDelay = `${Math.random() * 2}s`;
            particlesDiv.appendChild(particle);
        }
    </script>
</body>
</html>

回复 支持 反对

使用道具 举报

结帖率:100% (45/45)

签到天数: 3 天

发表于 2025-2-22 21:01:11 | 显示全部楼层   河北省廊坊市
背景再虚幻点就好了,现在只是模糊,没有深度的感觉,我的意思是 当你在凝视深渊的时候,深渊也正在凝视着你 这种感觉
回复 支持 反对

使用道具 举报

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

本版积分规则 致发广告者

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

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

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