-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #509 from OpenWebGAL/dev
4.5.3
- Loading branch information
Showing
22 changed files
with
296 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
packages/webgal/public/game/template/Stage/Choose/choose.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
.Choose_Main { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
flex-flow: column; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 13; | ||
background: rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.Choose_item { | ||
font-family: "WebgalUI", serif; | ||
cursor: pointer; | ||
min-width: 50%; | ||
padding: 0.25em 1em 0.25em 1em; | ||
font-size: 265%; | ||
color: #8E354A; | ||
text-align: center; | ||
border-radius: 4px; | ||
border: 3px solid rgba(0, 0, 0, 0); | ||
box-shadow: 0 0 25px rgba(0, 0, 0, 0.25); | ||
background: rgba(255, 255, 255, 0.65); | ||
margin: 0.25em 0 0.25em 0; | ||
transition: background-color 0.5s, border 0.5s, font-weight 0.5s, box-shadow 0.5s; | ||
|
||
&:hover { | ||
background: rgba(255, 255, 255, 0.9); | ||
box-shadow: 0 0 25px rgba(0, 0, 0, 0.35); | ||
border: 3px solid #8E354A; | ||
} | ||
} | ||
|
||
.Choose_item_disabled { | ||
font-family: "WebgalUI", serif; | ||
cursor: not-allowed; | ||
min-width: 50%; | ||
padding: 0.25em 1em 0.25em 1em; | ||
font-size: 265%; | ||
color: rgba(142, 53, 74, 0.5); | ||
text-align: center; | ||
border-radius: 4px; | ||
border: 3px solid rgba(0, 0, 0, 0); | ||
box-shadow: 0 0 25px rgba(0, 0, 0, 0.25); | ||
background: rgba(255, 255, 255, 0.5); | ||
margin: 0.25em 0 0.25em 0; | ||
transition: background-color 0.5s, border 0.5s, font-weight 0.5s, box-shadow 0.5s; | ||
} | ||
|
||
.Choose_item_outer { | ||
color: #000; | ||
min-width: 50%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"name":"Default Template", | ||
"webgal-version":"4.5.2" | ||
"webgal-version":"4.5.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { WebgalCore } from '@/Core/webgalCore'; | ||
|
||
export const WebGAL = new WebgalCore(); | ||
|
||
// 调试,不调试给去掉 | ||
// @ts-ignore | ||
// window.WebGAL = WebGAL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.