mirror of
https://github.com/blueskychan-dev/blueskychan.dev.git
synced 2025-07-08 15:51:04 +00:00
easter egg that u want
This commit is contained in:
parent
60280ef48f
commit
6ae87bdf8d
3 changed files with 74 additions and 1 deletions
71
public/random.js
Normal file
71
public/random.js
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
|
||||||
|
const lines = [
|
||||||
|
"ねえ 女の子になりたい",
|
||||||
|
"お願い いいですか?",
|
||||||
|
"チョコレートの森をくぐる",
|
||||||
|
"オレンジかぼちゃの馬車に",
|
||||||
|
"乗せられて 連れられて",
|
||||||
|
"ミルク色のお城",
|
||||||
|
"みんなきっと憧れている",
|
||||||
|
"童話の中のヒロイン",
|
||||||
|
"いつか見た 夢に見た",
|
||||||
|
"ガラスのハイヒール",
|
||||||
|
"ナイショの気持ち ホントの気持ち",
|
||||||
|
"ちょっと話しちゃおう",
|
||||||
|
"ワンツースリー 魔法をかけて",
|
||||||
|
"新しいボクになりたいのです お願い!",
|
||||||
|
"やっぱりボクも可愛くなりたいな",
|
||||||
|
"あの子みたく可愛くなりたいな",
|
||||||
|
"フリルドレスを召しませ",
|
||||||
|
"世界でひとりのシンデレラ",
|
||||||
|
"ちっちゃなユウキとおっきなハジメテ",
|
||||||
|
"きっと怖くなって震えちゃうけど",
|
||||||
|
"女の子になりたい!",
|
||||||
|
"お願い いいですか?",
|
||||||
|
"可愛くなっていいですか?",
|
||||||
|
"大人になれど下がらない",
|
||||||
|
"可笑しな声のトーンと",
|
||||||
|
"何しても 何しても",
|
||||||
|
"うまくいかない今日だ",
|
||||||
|
"ならば!",
|
||||||
|
"束の間でも夢の中に",
|
||||||
|
"ボクを見つけてみようかな",
|
||||||
|
"少しだけ 少しだけ",
|
||||||
|
"変われる気がする",
|
||||||
|
"ドキドキして ドキドキして",
|
||||||
|
"眠れない夜",
|
||||||
|
"ワンツースリー 勇気を出せば",
|
||||||
|
"童話に続く入口はもうそこだよ",
|
||||||
|
"上目遣いで太陽が昇って",
|
||||||
|
"ウィンクのひとつで喧嘩が収まる",
|
||||||
|
"小さなリボン結んだら",
|
||||||
|
"世界もひとつに シンデレラ",
|
||||||
|
"花も照れて恥ずかしがるような",
|
||||||
|
"もう少し君をひとり占めできるような",
|
||||||
|
"女の子になりたい!",
|
||||||
|
"隣にいいですか?",
|
||||||
|
"当たり前のものどれもが",
|
||||||
|
"違って見えたんだ",
|
||||||
|
"ワンツースリー 魔法をかけて",
|
||||||
|
"新しいボクになりたいのです お願い!",
|
||||||
|
"やっぱりボクも可愛くなりたいな",
|
||||||
|
"あの子みたく可愛くなりたいな",
|
||||||
|
"小さく首を傾げたら",
|
||||||
|
"ボクも今だけはシンデレラ",
|
||||||
|
"大事な今日を隅っこに隠れて",
|
||||||
|
"自分のこともわかんなくなる前に",
|
||||||
|
"女の子になりたい!",
|
||||||
|
"お願い いいですか?",
|
||||||
|
"可愛くなっていいですか?",
|
||||||
|
"ナイショだよ"
|
||||||
|
];
|
||||||
|
|
||||||
|
const transFlagColors = ['#55CDFC', '#F7A8B8', 'white'];
|
||||||
|
|
||||||
|
const linesPerSection = Math.ceil(lines.length / transFlagColors.length);
|
||||||
|
|
||||||
|
lines.forEach((line, index) => {
|
||||||
|
const sectionIndex = Math.floor(index / linesPerSection) % transFlagColors.length;
|
||||||
|
const color = transFlagColors[sectionIndex];
|
||||||
|
console.log(`%c${line}`, `color: ${color}; font-size: 28px;`);
|
||||||
|
});
|
|
@ -4,7 +4,7 @@ const Avatar = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="rounded-2xl overflow-hidden w-24" id="status">
|
<div className="rounded-2xl overflow-hidden w-24" id="status">
|
||||||
<Image src="/pfp.jpg" width={128} height={128} alt="Profile picture" />
|
<Image priority={true} src="/pfp.jpg" width={128} height={128} alt="Profile picture" />
|
||||||
</div>
|
</div>
|
||||||
<Tooltip anchorSelect="#status" content=":3" />
|
<Tooltip anchorSelect="#status" content=":3" />
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { Html, Head, Main, NextScript } from "next/document"
|
import { Html, Head, Main, NextScript } from "next/document"
|
||||||
|
import Script from 'next/script'
|
||||||
|
|
||||||
export default function Document() {
|
export default function Document() {
|
||||||
return (
|
return (
|
||||||
|
@ -7,6 +8,7 @@ export default function Document() {
|
||||||
<body>
|
<body>
|
||||||
<Main />
|
<Main />
|
||||||
<NextScript />
|
<NextScript />
|
||||||
|
<script src="/random.js" />
|
||||||
</body>
|
</body>
|
||||||
</Html>
|
</Html>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue