Spaces:
Running
Running
File size: 28,032 Bytes
86a2385 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>境界線通信 - 世界と虚構の合間</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #2c3e50;
--secondary: #34495e;
--accent: #9b59b6;
--text: #ecf0f1;
--highlight: #e74c3c;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #1a1a2e, #16213e);
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
}
header {
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
overflow: hidden;
}
.header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}
.header-content {
position: relative;
z-index: 2;
max-width: 800px;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
background: linear-gradient(to right, var(--accent), #3498db);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px rgba(155, 89, 182, 0.3);
}
to {
text-shadow: 0 0 20px rgba(155, 89, 182, 0.6), 0 0 30px rgba(155, 89, 182, 0.4);
}
}
.tagline {
font-size: 1.5rem;
margin-bottom: 2rem;
font-weight: 300;
letter-spacing: 1px;
}
.nav-btn {
display: inline-block;
padding: 0.8rem 2rem;
background: transparent;
color: var(--accent);
border: 2px solid var(--accent);
border-radius: 50px;
text-decoration: none;
font-weight: bold;
margin: 0 1rem;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.nav-btn:hover {
background: var(--accent);
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(155, 89, 182, 0.2);
}
.nav-btn:active {
transform: translateY(-1px);
}
.float-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.particle {
position: absolute;
display: block;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float linear infinite;
}
@keyframes float {
0% {
transform: translateY(0) rotate(0deg);
opacity: 1;
}
100% {
transform: translateY(-1000px) rotate(720deg);
opacity: 0;
}
}
/* メインコンテンツ */
main {
padding: 4rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
font-size: 2.5rem;
position: relative;
padding-bottom: 1rem;
}
.section-title::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(to right, var(--accent), #3498db);
border-radius: 3px;
}
.articles-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.article-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
position: relative;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.article-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
border: 1px solid var(--accent);
}
.article-image {
height: 200px;
width: 100%;
object-fit: cover;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.article-content {
padding: 1.5rem;
}
.article-category {
display: inline-block;
background: var(--accent);
color: white;
padding: 0.3rem 0.8rem;
border-radius: 50px;
font-size: 0.8rem;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.article-title {
font-size: 1.5rem;
margin-bottom: 1rem;
line-height: 1.3;
}
.article-excerpt {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 1.5rem;
line-height: 1.6;
font-size: 0.9rem;
}
.article-meta {
display: flex;
justify-content: space-between;
color: rgba(255, 255, 255, 0.5);
font-size: 0.8rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 1rem;
}
/* ニュースレターセクション */
.newsletter {
background: linear-gradient(135deg, var(--primary), var(--secondary));
padding: 4rem 2rem;
text-align: center;
border-radius: 10px;
margin-bottom: 4rem;
position: relative;
overflow: hidden;
}
.newsletter::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.03)" d="M43.5,-56.2C55.6,-45.3,63.6,-30.9,66.7,-15.4C69.8,0.1,68.1,16.8,59,30.7C49.9,44.6,33.5,55.7,15,63.7C-3.5,71.8,-24.1,76.8,-40.4,68.9C-56.8,61,-68.9,40.2,-73.4,17.7C-77.8,-4.8,-74.6,-29,-62.2,-45.5C-49.8,-62.1,-28.1,-71,-8.9,-65.5C10.3,-60,20.6,-40.1,43.5,-56.2Z" transform="translate(100 100)" /></svg>') no-repeat;
background-size: cover;
opacity: 0.5;
z-index: 0;
}
.newsletter-content {
position: relative;
z-index: 1;
max-width: 600px;
margin: 0 auto;
}
.newsletter-title {
font-size: 2rem;
margin-bottom: 1rem;
}
.newsletter-desc {
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
}
.newsletter-form {
display: flex;
max-width: 500px;
margin: 0 auto;
}
.newsletter-input {
flex: 1;
padding: 0.8rem 1.5rem;
border: none;
border-radius: 50px 0 0 50px;
background: rgba(255, 255, 255, 0.9);
font-size: 1rem;
}
.newsletter-input:focus {
outline: none;
background: white;
}
.newsletter-btn {
padding: 0.8rem 1.5rem;
background: var(--accent);
color: white;
border: none;
border-radius: 0 50px 50px 0;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
}
.newsletter-btn:hover {
background: #8e44ad;
}
/* 哲学的な引用 */
.philosophy-quote {
text-align: center;
padding: 4rem 2rem;
position: relative;
}
.quote-text {
font-size: 1.8rem;
font-style: italic;
margin-bottom: 1rem;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 1rem;
position: relative;
}
.quote-text:before,
.quote-text:after {
content: '"';
font-size: 3rem;
color: var(--accent);
opacity: 0.5;
}
.quote-text:before {
position: absolute;
left: -40px;
top: -20px;
}
.quote-text:after {
position: absolute;
right: -40px;
bottom: -40px;
}
.quote-author {
color: var(--accent);
font-size: 1.1rem;
margin-top: 2rem;
}
/* フッター */
footer {
background: rgba(0, 0, 0, 0.3);
padding: 3rem 2rem;
text-align: center;
position: relative;
}
.footer-logo {
font-size: 2rem;
margin-bottom: 1.5rem;
background: linear-gradient(to right, var(--accent), #3498db);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 2rem;
}
.footer-link {
color: var(--text);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-link:hover {
color: var(--accent);
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 2rem;
}
.social-link {
color: var(--text);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-link:hover {
color: var(--accent);
transform: translateY(-3px);
}
.copyright {
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
}
/* モーダル */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 100;
justify-content: center;
align-items: center;
backdrop-filter: blur(5px);
}
.modal-content {
background: linear-gradient(135deg, #1a1a2e, #16213e);
padding: 2rem;
border-radius: 10px;
max-width: 800px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
position: relative;
box-shadow: 0 0 30px rgba(155, 89, 182, 0.3);
border: 1px solid var(--accent);
}
.close-modal {
position: absolute;
top: 20px;
right: 20px;
color: rgba(255, 255, 255, 0.5);
font-size: 1.5rem;
cursor: pointer;
transition: color 0.3s ease;
}
.close-modal:hover {
color: var(--highlight);
}
.modal-article-title {
font-size: 2rem;
margin-bottom: 1.5rem;
}
.modal-article-image {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 5px;
margin-bottom: 2rem;
}
.modal-article-text {
line-height: 1.8;
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.8);
}
/* レスポンシブ */
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
.tagline {
font-size: 1.2rem;
}
.section-title {
font-size: 2rem;
}
.articles-container {
grid-template-columns: 1fr;
}
.newsletter-form {
flex-direction: column;
}
.newsletter-input {
border-radius: 50px;
margin-bottom: 1rem;
width: 100%;
}
.newsletter-btn {
border-radius: 50px;
width: 100%;
}
.quote-text {
font-size: 1.3rem;
}
}
/* アニメーション */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 1s ease-out forwards;
}
</style>
</head>
<body>
<header>
<div class="header-overlay"></div>
<div class="float-particles" id="particles"></div>
<div class="header-content">
<h1>境界線通信</h1>
<p class="tagline">世界と虚構の合間にある真実を探求する</p>
<div>
<a href="#articles" class="nav-btn">記事を読む</a>
<a href="#" class="nav-btn" id="about-btn">私たちについて</a>
</div>
</div>
</header>
<main>
<section id="articles">
<h2 class="section-title">最新の探求</h2>
<div class="articles-container">
<!-- 記事カード1 -->
<div class="article-card fade-in" style="animation-delay: 0.1s;">
<img src="https://source.unsplash.com/random/600x400/?dream" alt="夢想" class="article-image">
<div class="article-content">
<span class="article-category">認識論</span>
<h3 class="article-title">「夢」はどこから生まれ、どこへ向かうのか</h3>
<p class="article-excerpt">私たちが見る夢は単なる脳の副産物なのか、それとも別次元への窓なのか。夢研究の最前線と、古代から現代に至る夢解釈の変遷を追う...</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.06.15</span>
<span><i class="far fa-eye"></i> 4,382</span>
</div>
</div>
</div>
<!-- 記事カード2 -->
<div class="article-card fade-in" style="animation-delay: 0.2s;">
<img src="https://source.unsplash.com/random/600x400/?simulation" alt="シミュレーション" class="article-image">
<div class="article-content">
<span class="article-category">存在論</span>
<h3 class="article-title">シミュレーション仮説: 私たちは誰かの夢の中にいるのか?</h3>
<p class="article-excerpt">物理学者ニック・ボストロムが提唱したシミュレーション仮説の深淵に迫る。この宇宙が高度な文明によるシミュレーションである確率は?</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.06.10</span>
<span><i class="far fa-eye"></i> 8,715</span>
</div>
</div>
</div>
<!-- 記事カード3 -->
<div class="article-card fade-in" style="animation-delay: 0.3s;">
<img src="https://source.unsplash.com/random/600x400/?ai" alt="人工知能" class="article-image">
<div class="article-content">
<span class="article-category">テクノロジー</span>
<h3 class="article-title">AIが獲得した「想像力」は本物の創造性と言えるか</h3>
<p class="article-excerpt">最新の生成AIが生み出す芸術作品の深層を解析。人間の創造性と機械の生成行為の間に横たわる哲学的な問題とは...</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.06.05</span>
<span><i class="far fa-eye"></i> 6,293</span>
</div>
</div>
</div>
<!-- 記事カード4 -->
<div class="article-card fade-in" style="animation-delay: 0.4s;">
<img src="https://source.unsplash.com/random/600x400/?mythology" alt="神話" class="article-image">
<div class="article-content">
<span class="article-category">神話学</span>
<h3 class="article-title">現代社会に息づく古代神話の原型 - 大衆文化の深層心理</h3>
<p class="article-excerpt">マーベル映画からビデオゲームまで、21世紀の娯楽媒体に潜む神話的構造を精神分析学的に解読する試み...</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.05.28</span>
<span><i class="far fa-eye"></i> 5,642</span>
</div>
</div>
</div>
<!-- 記事カード5 -->
<div class="article-card fade-in" style="animation-delay: 0.5s;">
<img src="https://source.unsplash.com/random/600x400/?quantum" alt="量子物理" class="article-image">
<div class="article-content">
<span class="article-category">物理学</span>
<h3 class="article-title">量子多重世界解釈 - すべての可能性が実在するパラレルワールド</h3>
<p class="article-excerpt">観測されるまで決定されない量子状態は、実際にはすべての可能性が並行して存在しているという解釈の可能性を探る...</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.05.20</span>
<span><i class="far fa-eye"></i> 9,128</span>
</div>
</div>
</div>
<!-- 記事カード6 -->
<div class="article-card fade-in" style="animation-delay: 0.6s;">
<img src="https://source.unsplash.com/random/600x400/?virtualreality" alt="仮想現実" class="article-image">
<div class="article-content">
<span class="article-category">未来学</span>
<h3 class="article-title">仮想現実が常態化する世界での「本物」の定義の変遷</h3>
<p class="article-excerpt">メタバースの進展により、肉体を伴わないデジタル存在として生きることが可能になる未来。その時、私たちは何を「現実」と呼ぶのか...</p>
<div class="article-meta">
<span><i class="far fa-calendar"></i> 2023.05.15</span>
<span><i class="far fa-eye"></i> 7,451</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ニュースレターセクション -->
<section class="newsletter">
<div class="newsletter-content">
<h3 class="newsletter-title">境界線通信ニュースレター</h3>
<p class="newsletter-desc">現実と虚構の境界を探求する最新の記事、独占インタビュー、特別コンテンツを毎週お届けします。メールアドレスを登録して、思考の冒険に参加しましょう。</p>
<form class="newsletter-form">
<input type="email" placeholder="あなたのメールアドレス" class="newsletter-input" required>
<button type="submit" class="newsletter-btn">購読する</button>
</form>
</div>
</section>
<!-- 哲学的引用 -->
<section class="philosophy-quote">
<p class="quote-text">世界とは私の世界である。これは形而上学的主体が世界であるという事実において示されるのであり、世界と主体は一つであるという事実において示されるのだ。</p>
<p class="quote-author">- ルートヴィヒ・ウィトゲンシュタイン『論理哲学論考』-</p>
</section>
</main>
<footer>
<div class="footer-logo">境界線通信</div>
<div class="footer-links">
<a href="#" class="footer-link">ホーム</a>
<a href="#" class="footer-link">記事一覧</a>
<a href="#" class="footer-link">カテゴリー</a>
<a href="#" class="footer-link">寄稿</a>
<a href="#" class="footer-link">お問い合わせ</a>
<a href="#" class="footer-link">プライバシーポリシー</a>
</div>
<div class="social-links">
<a href="#" class="social-link"><i class="fab fa-twitter"></i></a>
<a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social-link"><i class="fab fa-instagram"></i></a>
<a href="#" class="social-link"><i class="fab fa-youtube"></i></a>
<a href="#" class="social-link"><i class="fab fa-patreon"></i></a>
</div>
<p class="copyright">© 2023 境界線通信 - 世界と虚構の合間. All Rights Reserved.</p>
</footer>
<!-- モーダル -->
<div class="modal" id="about-modal">
<div class="modal-content">
<span class="close-modal" id="close-modal">×</span>
<h2 class="modal-article-title">境界線通信について</h2>
<img src="https://source.unsplash.com/random/800x500/?philosophy" alt="哲学" class="modal-article-image">
<p class="modal-article-text">
「境界線通信」は2023年、現実と虚構の境界に魅了された研究者、作家、アーティストの集団によって設立されました。私たちは日々のニュースを超えて、物事の本質を探求するジャーナリズムを目指しています。
</p>
<p class="modal-article-text">
現代社会では、虚構と現実の境界がますます曖昧になっています。映画やゲームの仮想世界は日々進化し、人工知能は人間の創造性を模倣し、量子物理学は私たちの現実認識に根本的な問いを投げかけます。こうした時代に、私たちは何を信じ、どのように世界と関わっていけば良いのでしょうか?
</p>
<p class="modal-article-text">
境界線通信は、こうした問いに正面から向き合い、多角的な視点から探求するメディアプラットフォームです。哲学、科学、芸術、テクノロジー、神話学など様々な分野を横断し、現実と虚構が交差するその瞬間を捉えようとしています。
</p>
<p class="modal-article-text">
私たちの使命は、単なる事実報道を超えて、読者とともに「知の冒険」に乗り出すことです。世界のあり方を問い直し、時空間を超えた知的な対話の場を創出したいと考えています。
</p>
<p class="modal-article-text">
この旅に参加しませんか?境界の向こう側には、きっと驚くべき風景が広がっているはずです。
</p>
</div>
</div>
<script>
// パーティクルの生成
document.addEventListener('DOMContentLoaded', function() {
const particlesContainer = document.getElementById('particles');
for (let i = 0; i < 50; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// ランダムなサイズ (3px ~ 10px)
const size = Math.random() * 7 + 3;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// ランダムな位置
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
// ランダムな不透明度 (0.2 ~ 0.8)
particle.style.opacity = Math.random() * 0.6 + 0.2;
// ランダムなアニメーション時間 (10s ~ 30s) と遅延 (0s ~ 5s)
const duration = Math.random() * 20 + 10;
const delay = Math.random() * 5;
particle.style.animationDuration = `${duration}s`;
particle.style.animationDelay = `${delay}s`;
particlesContainer.appendChild(particle);
}
// モーダルの制御
const aboutBtn = document.getElementById('about-btn');
const aboutModal = document.getElementById('about-modal');
const closeModal = document.getElementById('close-modal');
aboutBtn.addEventListener('click', function(e) {
e.preventDefault();
aboutModal.style.display = 'flex';
document.body.style.overflow = 'hidden';
});
closeModal.addEventListener('click', function() {
aboutModal.style.display = 'none';
document.body.style.overflow = '';
});
window.addEventListener('click', function(e) {
if (e.target === aboutModal) {
aboutModal.style.display = 'none';
document.body.style.overflow = '';
}
});
// フェードインアニメーションのトリガー
const fadeElements = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
}
});
}, { threshold: 0.1 });
fadeElements.forEach(el => {
el.style.opacity = 0;
observer.observe(el);
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
</html> |