soiz1 commited on
Commit
76cdebf
·
verified ·
1 Parent(s): 82aec28

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +67 -85
index.html CHANGED
@@ -508,94 +508,76 @@
508
  display: block;
509
  }
510
  </style>
511
- <style>
512
- body {
513
- margin: 0;
514
- padding: 0;
515
- background-color: #0a192f; /* 暗い青 */
516
- overflow: hidden;
517
- height: 100vh;
518
- }
519
-
520
- .wave-container {
521
- position: relative;
522
- width: 100%;
523
- height: 100%;
524
- z-index: -1;
525
- }
526
-
527
- .wave {
528
- position: absolute;
529
- width: 100%;
530
- height: 100%;
531
- background: linear-gradient(
532
- to bottom,
533
- transparent,
534
- rgba(100, 200, 255, 0.1) 20%, /* 水色 */
535
- rgba(100, 200, 255, 0.3) 50%,
536
- rgba(100, 200, 255, 0.1) 80%,
537
- transparent
538
- );
539
- opacity: 0.7;
540
- z-index: -1;
541
- animation: waveFlow 4s linear infinite;
542
- }
543
-
544
- .wave:nth-child(2) {
545
- animation-delay: 1s;
546
- opacity: 0.5;
547
- }
548
-
549
- .wave:nth-child(3) {
550
- animation-delay: 2s;
551
- opacity: 0.3;
552
- }
553
-
554
- @keyframes waveFlow {
555
- 0% {
556
- transform: translateY(-100%);
557
- }
558
- 100% {
559
- transform: translateY(100%);
560
- }
561
- }
562
-
563
- /* テクノロジー風のグリッド線を追加 */
564
- .grid-lines {
565
- position: absolute;
566
- top: 0;
567
- left: 0;
568
- width: 100%;
569
- height: 100%;
570
- background-image:
571
- linear-gradient(rgba(100, 200, 255, 0.1) 1px, transparent 1px),
572
- linear-gradient(90deg, rgba(100, 200, 255, 0.1) 1px, transparent 1px);
573
- background-size: 50px 50px;
574
- z-index: -2;
575
- }
576
-
577
- /* 点滅するドットでテクノロジー感を追加 */
578
- .tech-dots {
579
- position: absolute;
580
- width: 100%;
581
- height: 100%;
582
- z-index: -1;
583
- }
584
-
585
- .tech-dot {
586
- position: absolute;
587
- width: 3px;
588
- height: 3px;
589
- background-color: rgba(100, 200, 255, 0.7);
590
- border-radius: 50%;
591
- animation: blink 2s infinite alternate;
592
- }
593
-
594
- @keyframes blink {
595
  0% { opacity: 0.2; }
596
  100% { opacity: 0.8; }
597
  }
598
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
 
600
  </head>
601
 
 
508
  display: block;
509
  }
510
  </style>
511
+ <style>
512
+ html, body {
513
+ margin: 0;
514
+ padding: 0;
515
+ height: 100%;
516
+ background-color: #0a192f;
517
+ overflow: hidden;
518
+ }
519
+ @keyframes blink {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  0% { opacity: 0.2; }
521
  100% { opacity: 0.8; }
522
  }
523
+ .wave-container {
524
+ position: relative;
525
+ width: 100%;
526
+ height: 100%;
527
+ min-height: 100vh;
528
+ }
529
+
530
+ /* グリッド線を最背面に */
531
+ .grid-lines {
532
+ position: absolute;
533
+ top: 0;
534
+ left: 0;
535
+ width: 100%;
536
+ height: 100%;
537
+ background-image:
538
+ linear-gradient(rgba(100, 200, 255, 0.1) 1px, transparent 1px),
539
+ linear-gradient(90deg, rgba(100, 200, 255, 0.1) 1px, transparent 1px);
540
+ background-size: 50px 50px;
541
+ z-index: 1;
542
+ }
543
+
544
+ /* 波をグリッドの上に */
545
+ .wave {
546
+ position: absolute;
547
+ width: 100%;
548
+ height: 100%;
549
+ background: linear-gradient(
550
+ to bottom,
551
+ transparent,
552
+ rgba(100, 200, 255, 0.1) 20%,
553
+ rgba(100, 200, 255, 0.3) 50%,
554
+ rgba(100, 200, 255, 0.1) 80%,
555
+ transparent
556
+ );
557
+ opacity: 0.7;
558
+ animation: waveFlow 4s linear infinite;
559
+ z-index: 2;
560
+ }
561
+
562
+ /* テクノロジードットの修正 */
563
+ .tech-dots {
564
+ position: absolute;
565
+ top: 0;
566
+ left: 0;
567
+ width: 100%;
568
+ height: 100%;
569
+ z-index: 3;
570
+ }
571
+
572
+ .tech-dot {
573
+ position: absolute;
574
+ width: 3px;
575
+ height: 3px;
576
+ background-color: rgba(100, 200, 255, 0.7);
577
+ border-radius: 50%;
578
+ animation: blink 2s infinite alternate;
579
+ }
580
+ </style>
581
 
582
  </head>
583