在這個留言板專案裡,就三個檔案;
/poject
- index.html
- app.js
- style.css
因為HTML的部分不是重點,就直接貼在這,完整的index.html就把下面這段code貼在上篇的<body>後就是了。
<div class="board">
<div class="board-header">
<h2>Message Board</h2>
</div>
<div class="board-container">
<div class="board-content">
</div>
</div>
<button id="myBtn" type="button">Add</button>
<!-- Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<form id="add-message-form">
<div class="form-content">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="message">Message:</label><br>
<textarea name="message" style="width:80%;height:100px;"></textarea>
</div>
<div class="btn-submit">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
</div>
簡單說明一下,就是有個board,board又分成board-header和board-conten兩塊。
另外還有Add按鈕以及Modal。
Modal就是像下面圖裡跳出在畫面中間的一個框,然後裡面可能有表單要輸入或是有文字訊息。
在我們的網頁,按下Add後會出現Modal,裡面是便利貼的表單,送出後可以加檔案到我們的firebase中。
然後是美化我們的網頁重要的style.css。
先說好,我很不會CSS,總之就是一直在亂調,這整個專案我敢說我80%的時間都耗在這上面,最後也沒多好看,反正重點是要學使用firebase吧,網頁的外觀什麼的根本不重要,但我還是很努力地把它用得還能看,總之我想說的是下面的CSS程式碼看看就好,別太深入研究啊,因為我也是個外行。
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
height: 100%;
}
body {
height: 100%;
display: flex;
justify-content: center;
font-family: "Lato", sans-serif;
background-color: rgb(233, 236, 225);
}
.board {
justify-content: center;
width: 50%;
height: 100%;
background-color: rgb(169, 217, 240);
}
.board-header {
background-color: rgb(139, 209, 188);
display: flex;
justify-content: center;
height: 100px;
font-size: 50px;
width: 100%;
color: white;
}
.board-container {
width: 100%;
height: 100%;
background-color: rgb(169, 217, 240);
}
.board-content {
display: grid;
grid-template-columns: 50% 50%;
font-size: 50px;
width: 100%;
height: 100%;
}
.note {
position: relative;
margin: 5%;
width: 90%;
height: 300px;
background-color: rgb(234, 247, 211);
}
.note-header {
height: 40px;
font-size: 28px;
}
.note-message {
font-size: 20px;
}
#myBtn {
position: fixed;
display: block;
right: 0;
bottom: 0;
border-radius: 10%;
margin: 2%;
width: 10%;
height: 50px;
background-color: rgb(170, 241, 198);
}
/* The Modal (background) */
.modal {
display: none;
/* Hidden by default */
position: fixed;
/* Stay in place */
z-index: 1;
/* Sit on top */
left: 0;
top: 0;
width: 100%;
/* Full width */
height: 100%;
/* Full height */
overflow: auto;
/* Enable scroll if needed */
background-color: rgb(0, 0, 0);
/* Fallback color */
background-color: rgba(0, 0, 0, 0.4);
/* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
position: absolute;
background-color: #fefefe;
margin: 15% 25% auto 25%;
/* 15% from the top and centered */
width: 50%;
height: 300px;
padding: 50px;
/* Could be more or less, depending on screen size */
}
input {
height: 20px;
}
/* The Close Button */
.close {
position: absolute;
color: #636363;
right: 2px;
top: -5px;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
有了上面的style.css,網頁現在應該會長這樣,至少在我的電腦上看是這樣啦。
嗯 ... 沒有資料,按Add也不會有反應。
先來解決按Add應該要跳出Modal的問題吧!
Modal之所以沒出現,其實只是因為在style.css裡的.modal裡我們將display設定為"none",所以是被隱藏了,應該要在按下Add後修改display值成"block",這裡就要寫Javascript了。
app.js:
const modal = document.querySelector("#myModal");
const btn = document.querySelector("#myBtn");
const span = document.querySelectorAll(".close")[0];
// When the user clicks on the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
#myBtn指向的就是Add按鈕,這裡我們設定一click事件,當使用者按下Add,modal的style中的display會被改成"block",也就讓被隱藏的modal顯現出來了。
下面兩個函式則都是關閉用,第一個是按下modal右上角的"X"後又會將modal隱藏,第二個函式是考量使用者方便,在我們點出modal時,周圍會變成暗色,如果使用者點了暗色的部分就會關閉modal,是個增加使用者體驗的設計。
如此,我們有個能看的網頁外觀了,接下來就進入存取firebase資料吧!(終於....
沒有留言:
張貼留言