Skip to content

Commit

Permalink
✨ feat: 메인화면 디자인 수정, insert 화면 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
khr0923 committed Apr 29, 2024
1 parent c3dac86 commit 2177f60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,6 @@
</div>
<script type="text/javascript" src="./js/globalState.js"></script>
<script src="./js/app.js"></script>
<script src="./js/tetris/constants.js"></script>
</body>
</html>
</html>
3 changes: 3 additions & 0 deletions js/tetris.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ function returnToInsert() {
mainPage.style.transform = "scale(1)"; // 줌 아웃
mainPage.style.transition = ".5s";

gameStartDisplay.style.display = "block";

// 게임 선택 화면 보이기
const gameSelection = document.getElementById("content");
mainBgm.play();
Expand Down Expand Up @@ -339,3 +341,4 @@ function clearDarkenGameContent() {
leftColumn.style.filter = "";
rightColumn.style.filter = "";
}

0 comments on commit 2177f60

Please sign in to comment.