Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Web Programming - Lesson 6
Search
Ryan Chung
May 07, 2020
Technology
1
610
Web Programming - Lesson 6
Ryan Chung
May 07, 2020
Tweet
Share
More Decks by Ryan Chung
See All by Ryan Chung
MovieBot Development
ryan403
0
300
Design Voice-First Games for Alexa
ryan403
0
54
AI Teaching Talk
ryan403
0
110
Cognitive Service
ryan403
0
96
jQuery & API Practices
ryan403
0
130
CSS Practices
ryan403
1
150
JavaScript Practices
ryan403
0
98
Web Programming - Lesson 7
ryan403
1
620
Web Programming - Lesson 5
ryan403
1
420
Other Decks in Technology
See All in Technology
生まれ変わった AWS Security Hub (Preview) を紹介 #reInforce_osaka / reInforce New Security Hub
masahirokawahara
0
470
Delegating the chores of authenticating users to Keycloak
ahus1
0
140
LangChain Interrupt & LangChain Ambassadors meetingレポート
os1ma
2
310
NewSQLや分散データベースを支えるRaftの仕組み - 仕組みを理解して知る得意不得意
hacomono
PRO
2
130
ネットワーク保護はどう変わるのか?re:Inforce 2025最新アップデート解説
tokushun
0
200
LangSmith×Webhook連携で実現するプロンプトドリブンCI/CD
sergicalsix
1
230
赤煉瓦倉庫勉強会「Databricksを選んだ理由と、絶賛真っ只中のデータ基盤移行体験記」
ivry_presentationmaterials
2
360
Glacierだからってコストあきらめてない? / JAWS Meet Glacier Cost
taishin
1
160
IPA&AWSダブル全冠が明かす、人生を変えた勉強法のすべて
iwamot
PRO
2
120
成長し続けるアプリのためのテストと設計の関係、そして意思決定の記録。
sansantech
PRO
0
120
How Do I Contact HP Printer Support? [Full 2025 Guide for U.S. Businesses]
harrry1211
0
120
無意味な開発生産性の議論から抜け出すための予兆検知とお金とAI
i35_267
4
13k
Featured
See All Featured
Code Review Best Practice
trishagee
69
18k
Facilitating Awesome Meetings
lara
54
6.4k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
820
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Practical Orchestrator
shlominoach
189
11k
Documentation Writing (for coders)
carmenintech
72
4.9k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
BBQ
matthewcrist
89
9.7k
Transcript
Web Programming –
[email protected]
行動開發學院 行動開發學院 JavaScript Lab 網頁整合 Ryan
Chung 107
Web Programming –
[email protected]
行動開發學院 行動開發學院 目標 • 把目前做過的五個練習頁面變成一個網站 •
有一個首頁,然後可以跳至每個練習頁面 • 每個練習頁面也可以互相連結 • 每個練習頁面也可以回到首頁 108
Web Programming –
[email protected]
行動開發學院 行動開發學院 Bootstrap • 方便好用的樣板,並已考慮桌面與行動端 109
https://getbootstrap.com/
Web Programming –
[email protected]
行動開發學院 行動開發學院 Example : Carousel •
我們用Carousel這個範例來整合 • 下載:https://ppt.cc/f27Lrx 110 https://getbootstrap.com/docs/4.3/examples/
Web Programming –
[email protected]
行動開發學院 行動開發學院 建立一個新專案 • 在電腦中新增一個資料夾:merge-practice •
將剛才解壓縮的內容放至這個資料夾 • 再將過去練習的五個資料夾都搬進來 111
Web Programming –
[email protected]
行動開發學院 行動開發學院 首頁測試 • 先確定樣板範例的 index.html有正常運作
112
Web Programming –
[email protected]
行動開發學院 行動開發學院 新增 random-select.html • 在資料夾中增加random-select.html
• 修改index.html上方的選單 113
Web Programming –
[email protected]
行動開發學院 行動開發學院 編輯random-select.html • 先將index.html中的所有內容貼至random- select.html
• 上方Head中,加入需要的CSS 114
Web Programming –
[email protected]
行動開發學院 行動開發學院 編輯random-select.html • 修改上方選單中的連結 115
Web Programming –
[email protected]
行動開發學院 行動開發學院 編輯random-select.html • main區塊中的大部分內容都刪掉 •
將原本random-select中的index裡的Body中的內容貼過來 116
Web Programming –
[email protected]
行動開發學院 行動開發學院 編輯random-select.html • 最下方加上我們需要的JS檔 117
Web Programming –
[email protected]
行動開發學院 行動開發學院 random-select中的main.js • 合併後需要考量選擇器是否要調整寫法 118
Web Programming –
[email protected]
行動開發學院 行動開發學院 測試 • 首頁可跳至RandomSelect,也可再回來 •
RandomSelect可正常運作 119
Web Programming –
[email protected]
行動開發學院 行動開發學院 相同方法製作另外四個頁面 • 建立xxx.html •
把random-select.html的內容貼過來 • 加上會用到的CSS • 修改Main區塊中的內容(原專案index.html) • 加上會用到的JS • 測試 120
Web Programming –
[email protected]
行動開發學院 行動開發學院 細節 • 增加頁面後,要再回去改其他幾頁的選單 •
active類別可以讓該選單文字為白色 • 該頁面自己的選單href屬性設定為# • js檔中的圖片路徑 • 事件傳回物件的結構是否有改變 121
Web Programming –
[email protected]
行動開發學院 行動開發學院 Recap • Bootstrap –樣板套用與修改
–選單 • JavaScript –放的位置、選擇器調整 • CSS –放的位置 • HTML –頁面超連結 122