谁帮我改个代码 啊

huangtiandi 2026-08-24 16:26 1

这是原网站https://cz.uk.to/ 想增加什么效果呢

http://s88.free.fr/ 想把里面的至尊宝 弄成这个网站里的 安澜 俩字的 效果 然后网站也增加第二个网站的 流星效果 然后 背景音乐自动播放 现在网页代码里有音乐链接但是不能自动播放 另外孙悟空的头像那里也 变成 第二个网站里 头像图标那里 周围有光圈的效果




好人一生平安

送个没有数据库 没有账号 只有FTP的 free.fr 用吧 给好人

最新回复 (12)
  • ezra-5822 08-24 16:27
    1

    托管给ai帮你弄

  • chiren 08-24 16:27
    2

    预算多少? 或者让 AI 给你干

  • huangtiandi 楼主 08-24 16:28
    3

    @ezra-5822 #1 AI 给了3段代码 我不知道加到那里 打开CSS 乱七八糟的

  • coderZoe 08-24 16:28
    4

    @huangtiandi #3 直接让他读工程源码,让他在源码里改

  • ezra-5822 08-24 16:29
    5

    @huangtiandi #3 这不是托管,你让他托管你的项目,他会自己帮你改

  • huangtiandi 楼主 08-24 16:32
    6

    @ezra-5822 #5 用GPT吗 直接把代码发给他 然后让他修改CSS和html代码吗 我之前用过 只能修改一个 AI托管项目是哪个网站啊

  • 梦影 08-24 16:42
    7

    直接让ai改吧

  • haoge101 08-24 16:43
    8

    <!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>
    * {
    box-sizing: border-box;
    }

    body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-family: "Microsoft YaHei", "Noto Sans SC", sans-serif;
    }

    /* 动态文字容器 */
    #svgBox {
    width: 600px;
    max-width: 90vw;
    height: 100px;
    margin: 0 auto;
    }

    /* 四层彩色 SVG 描边动画 */
    .text {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    fill: none;

    /* 将文字轮廓切成流动的虚线 */
    stroke-dasharray: 90 310;

    /* 让虚线沿文字轮廓持续运动 */
    animation: stroke 6s infinite linear;
    }

    .text-1 {
    stroke: #3498db;
    text-shadow: 0 0 5px #3498db;
    animation-delay: -1.5s;
    }

    .text-2 {
    stroke: #f39c12;
    text-shadow: 0 0 5px #f39c12;
    animation-delay: -3s;
    }

    .text-3 {
    stroke: #e74c3c;
    text-shadow: 0 0 5px #e74c3c;
    animation-delay: -4.5s;
    }

    .text-4 {
    stroke: #9b59b6;
    text-shadow: 0 0 5px #9b59b6;
    animation-delay: -6s;
    }

    @keyframes stroke {
    100% {
    stroke-dashoffset: -400;
    }
    }

    .subtitle {
    margin-top: 25px;
    text-align: center;
    color: #888;
    font-size: 14px;
    }

    /* 让小屏幕上也比较协调 */
    @media (max-width: 500px) {
    #svgBox {
    height: 80px;
    }

    .text {
    font-size: 34px;
    }
    }
    </style>
    </head>

    <body>

    <div>
    <div id="svgBox">
    <svg width="100%" height="100%" viewBox="0 0 600 100">
    <text
    text-anchor="middle"
    x="300"
    y="62"
    class="text text-1">至尊宝</text>

    <text
    text-anchor="middle"
    x="300"
    y="62"
    class="text text-2">至尊宝</text>

    <text
    text-anchor="middle"
    x="300"
    y="62"
    class="text text-3">至尊宝</text>

    <text
    text-anchor="middle"
    x="300"
    y="62"
    class="text text-4">至尊宝</text>
    </svg>
    </div>

    <div class="subtitle">至尊宝 · 彩色流动描边效果</div>
    </div>

    </body>
    </html>
  • lihaha 08-24 16:45
    9

    AI一键

  • AngeloSakura 08-24 16:54
    10

    找ai,或者找开发其实基本上你得给点啥,给点鸡也好

  • Doraenone 08-24 16:57
    11

    ai吧

  • 梦影 08-24 16:58
    12

    https://hds-60uddy34dxx1-6014-52xgj.grok-code-wild.hades-www.grok-sandbox.com/ 这个如何? ^-^

    源码:https://gxm.lanzouu.com/iIkse44c9ioh

* 帖子来源NodeSeek
返回