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

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +18 -0
index.html CHANGED
@@ -558,6 +558,24 @@
558
  animation: waveFlow 4s linear infinite;
559
  z-index: 2;
560
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
 
562
  /* テクノロジードットの修正 */
563
  .tech-dots {
 
558
  animation: waveFlow 4s linear infinite;
559
  z-index: 2;
560
  }
561
+ .wave:nth-child(2) {
562
+ animation-delay: 1s;
563
+ opacity: 0.5;
564
+ }
565
+
566
+ .wave:nth-child(3) {
567
+ animation-delay: 2s;
568
+ opacity: 0.3;
569
+ }
570
+
571
+ @keyframes waveFlow {
572
+ 0% {
573
+ transform: translateY(-100%);
574
+ }
575
+ 100% {
576
+ transform: translateY(100%);
577
+ }
578
+ }
579
 
580
  /* テクノロジードットの修正 */
581
  .tech-dots {