-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(courseSearch): 新增等待載入頁面 feat(courseSearch): 手機版預排課表新增紅色xx刪除課程 refactor: 更改名稱myBg-dark>labelBg-dark 只用在個人課表的class,更改名稱為label docs: readme新增啟動 build: 新增給pm2用的設定檔 feat: 新增改angular前端用的cors
- Loading branch information
1 parent
1591dc2
commit 65ca1bc
Showing
11 changed files
with
303 additions
and
193 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
module.exports = { | ||
apps: [{ | ||
name: 'mycosim', | ||
script: 'server.js', | ||
watch: false, | ||
ignore_watch: ["node_modules", "pm2log", "docx", "pdf", "picture", "xlsx", "*.log"], | ||
exec_mode: 'cluster', | ||
instances: 5, | ||
max_memory_restart: '1000M', | ||
time: true, | ||
log_date_format: 'YYYY-MM-DD HH:mm Z', | ||
force: true, | ||
wait_ready: false, | ||
max_restarts: 10, | ||
// 單位為 ms, 預設為 0, 若有指定時間,則 app 會等待指定時間過後重啟 | ||
autorestart: true, | ||
error_file: './pm2log/err.log', | ||
// 正常輸出 log 的指定位置 | ||
out_file: './pm2log/out.log', | ||
log_file: './pm2log/log.log' | ||
}] | ||
}; |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@import url(https://fonts.googleapis.com/css?family=Montserrat); | ||
body { | ||
width: 100%; | ||
height: 100%; | ||
overflow: hidden; | ||
} | ||
.wrap { | ||
width: 100vw; | ||
height: 100vh; | ||
background-image: linear-gradient(rgba(255, 255, 255, 0.9), #fff); | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
z-index: 1050; | ||
font-family: Montserrat; | ||
} | ||
.text { | ||
color: #fbae17; | ||
display: inline-block; | ||
margin-left: 5px; | ||
} | ||
.bounceball { | ||
position: relative; | ||
display: inline-block; | ||
height: 37px; | ||
width: 15px; | ||
} | ||
.bounceball:before { | ||
position: absolute; | ||
content: ''; | ||
display: block; | ||
top: 0; | ||
width: 15px; | ||
height: 15px; | ||
border-radius: 50%; | ||
background-color: #fbae17; | ||
transform-origin: 50%; | ||
animation: bounce 500ms alternate infinite ease; | ||
} | ||
@keyframes bounce { | ||
0% { | ||
top: 30px; | ||
height: 5px; | ||
border-radius: 60px 60px 20px 20px; | ||
transform: scaleX(2); | ||
} | ||
35% { | ||
height: 15px; | ||
border-radius: 50%; | ||
transform: scaleX(1); | ||
} | ||
100% { | ||
top: 0; | ||
} | ||
} | ||
|
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