소스 검색

Hide ready element

Thomas Dy 6 년 전
부모
커밋
2e4a9da4fb
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      dist/style.css

+ 9 - 0
dist/style.css

@@ -199,8 +199,17 @@
   top: 0;
 }
 
+#container #ready {
+  overflow: hidden;
+  max-height: 0;
+  transition: max-height 0s ease 0.5s, top 0.5s, left 0.5s, opacity 0.5s;
+}
+
 #container.game.game-loading #ready {
   opacity: 1;
+
+  max-height: 100%;
+  transition: max-height 0s, top 0.5s, left 0.5s, opacity 0.5s;
 }
 
 #container.game.game-playing #game {