唐韵书院

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 332|回复: 15

《我要去外面的世界》

[复制链接]

13

主题

60

回帖

200

积分

注册会员

Rank: 2

积分
200
发表于 2026-1-19 21:40:41 | 显示全部楼层 |阅读模式
我叫相里萌,
是浩渺天空一颗微小的星

心里,燃烧炙热的火
体外,覆盖着千年的尘
我默默的想,细细的听
只为挣脱,这坚固的网,困我的城

远方,有神魔在呐喊
还有,划破苍穹的剑鸣
我不要这虚假的安稳
一触即溃的繁荣

冲破牢笼
哪怕,成为流逝的星
也不愿收敛光芒
哪怕,一瞬即是永恒
回复

使用道具 举报

7

主题

143

回帖

452

积分

中级会员

Rank: 3Rank: 3

积分
452
发表于 2026-1-19 23:46:49 | 显示全部楼层
本帖最后由 宋白鸥M 于 2026-1-20 00:30 编辑 <br /><br /><!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            padding: 20px;
            background: #fff;
            font-family: "宋体", sans-serif;
            position: relative;
            overflow-x: hidden;
        }

        /* 1. 桃花花瓣(柔和飘落) */
        .peach-blossom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        /* 2. 粉色画框(修改为居左) */
        .pink-frame {
            border: 12px solid #FFE4E9;
            border-radius: 18px;
            padding: 25px 15px;
            background: #fff;
            max-width: 550px;
            /* 去掉居中的 margin: 0 auto,改为左外边距控制间距 */
            margin-left: 20px;
            position: relative;
            z-index: 3;
            box-shadow: 0 2px 10px rgba(255, 180, 193, 0.15);
        }

        /* 3. 居中歌词 */
        .lyric {
            font-size: 16px;
            line-height: 2.4;
            color: #333;
            text-align: center;
            margin: 0;
        }

        /* 4. 隐藏播放器 */
        embed {
            display: none;
        }

        /* 5. 提示文字 */
        .tip {
            text-align: center;
            margin-top: 20px;
            color: #D87093;
            font-size: 14px;
        }

        /* 花瓣飘落动画(更柔和) */
        @keyframes blossomFall {
            0% {
                transform: translateY(-20px) rotate(0deg) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateY(calc(100vh + 20px)) rotate(180deg) scale(0.8);
                opacity: 0;
            }
        }
    </style>
</head>
<body>
    <!-- 1. 花瓣容器 -->
    <div class="peach-blossom" id="peachBlossom"></div>

    <!-- 2. 画框+歌词 -->
    <div class="pink-frame">
        <div class="lyric">
冒个泡,嘻嘻~~<br>
写的挺走心的
        </div>

        <!-- 隐藏播放器(闭合标签) -->
        <embed
            src="https://www.lizhi.fm/616408/3190237287581010950?u=4928046"
            type="audio/mpeg"
            autoplay="true"
            muted="false"
            controller="false"
        >
    </div>

    <script>
        // 生成柔和花瓣
        function createPeachBlossom() {
            const container = document.getElementById('peachBlossom');
            const blossom = document.createElement('div');
            
            const size = Math.random() * 10 + 5;
            const color = `rgba(255, ${Math.floor(Math.random() * 70 + 170)}, ${Math.floor(Math.random() * 70 + 170)}, ${Math.random() * 0.4 + 0.5})`;
            const fallTime = Math.random() * 10 + 15;
            
            blossom.style.cssText = `
                position: absolute;
                width: ${size}px;
                height: ${size}px;
                background-color: ${color};
                border-radius: 50% 30%;
                top: -20px;
                left: ${Math.random() * 90 + 5}%;
                animation: blossomFall ${fallTime}s linear infinite;
            `;
            
            container.appendChild(blossom);
            setTimeout(() => blossom.remove(), fallTime * 1000);
        }

        setInterval(createPeachBlossom, 1200);
        for (let i = 0; i < 10; i++) createPeachBlossom();

        // 点击播放
        document.body.addEventListener('click', () => {
            const audio = document.querySelector('embed');
            audio && !audio.playing && audio.play();
        });
    </script>
</body>
</html>
回复 支持 1 反对 0

使用道具 举报

12

主题

158

回帖

381

积分

中级会员

Rank: 3Rank: 3

积分
381
发表于 2026-1-19 22:15:13 | 显示全部楼层
兄弟字好,人帅
回复 支持 1 反对 0

使用道具 举报

36

主题

941

回帖

2103

积分

版主

Rank: 7Rank: 7Rank: 7

积分
2103
发表于 2026-1-19 21:54:10 | 显示全部楼层
欢迎相里萌
回复 支持 反对

使用道具 举报

7

主题

40

回帖

136

积分

注册会员

Rank: 2

积分
136
发表于 2026-1-19 22:01:30 | 显示全部楼层
不错。写现代诗的少
回复 支持 反对

使用道具 举报

13

主题

87

回帖

428

积分

中级会员

Rank: 3Rank: 3

积分
428
发表于 2026-1-19 22:25:28 | 显示全部楼层
好看的现代诗,学习了!
回复 支持 反对

使用道具 举报

32

主题

466

回帖

1178

积分

金牌会员

Rank: 6Rank: 6

积分
1178
发表于 2026-1-20 12:04:34 | 显示全部楼层
新诗真不错,赏读
回复 支持 反对

使用道具 举报

13

主题

60

回帖

200

积分

注册会员

Rank: 2

积分
200
 楼主| 发表于 2026-1-20 12:20:17 | 显示全部楼层

谢谢连公子。
回复 支持 反对

使用道具 举报

1

主题

61

回帖

172

积分

注册会员

Rank: 2

积分
172
发表于 2026-1-20 13:36:46 | 显示全部楼层
乍一眼,我以为是个姑娘
回复 支持 反对

使用道具 举报

13

主题

60

回帖

200

积分

注册会员

Rank: 2

积分
200
 楼主| 发表于 2026-1-20 17:44:23 | 显示全部楼层

谢谢连宋公子。
回复 支持 反对

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|唐韵书院

GMT+8, 2026-7-19 07:23 , Processed in 0.053454 second(s), 23 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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