Responsive Web Design
  • Responsive Web Design 課程
  • 1 簡介
    • 1.1 講者簡介
    • 1.2 課程簡介
  • 2 版面概念解析
  • 3 Media Query
    • 3.1 媒體類型 Media Type
    • 3.2 媒體描述 Media Features
    • 3.3 練習
  • 4 Viewport
    • 4.1 Viewport 定義
    • 4.2 HTML Viewport Meta
  • 5 Bootstrap Grid System
    • 5.1 載入 Grid 相關 CSS
    • 5.2 Grid System
    • 5.3 breakpoint 練習
  • 6 Transition 轉場效果
    • 6.1 第一個 transition
    • 6.2 transition-property
    • 6.3 transition-duration
    • 6.4 transition-timing-function
    • 6.5 transition-delay
    • 6.6 transition 簡寫
    • 6.7 練習
  • 7 Grid 排版模式
    • 7.1 基本觀念及術語
    • 7.2 Grid Container
    • 7.3 Grid Items
    • 7.4 練習
  • 8 Animation 動畫效果
    • 8.1 第一個 animation
    • 8.2 關於 keyframes
    • 8.3 相同元素套用多個 animation
    • 8.4 animation-iteration-count
    • 8.5 animation-direction
    • 8.6 animation-delay
    • 8.7 animation-fill-mode
    • 8.8 animation-play-state
    • 8.9 animation-timing-function
    • 8.10 animation 簡寫
    • 8.11 練習
  • 9 練習
  • 10 RWD 作業
  • 11 手機連本機端網站
  • 12 參考資料
  • 13 補充:AOS
Powered by GitBook
On this page
  • Fixed:固定式
  • Fluid:流體式
  • Adaptive:自適性
  • Responsive:響應式
  • 範例觀察

2 版面概念解析

Previous1.2 課程簡介Next3 Media Query

Last updated 1 year ago

Fixed:固定式

概念:版面是固定寬度,不論螢幕寬度如何,都不會影響版面大小。

案例參考:

Fluid:流體式

概念:版面寬度是用百分比來佔比例,螢幕在縮放時,版面會跟隨螢幕來縮放。

參考範例:

Adaptive:自適性

概念:鎖定幾個螢幕寬度尺吋,來決定版面主內容應該改變成多少固定尺吋。

例如:

  • 針對螢幕寬度 1400px 以上,版面主內容區塊 1320px。

  • 針對螢幕寬度 1200px ~ 1399px ,版面主內容區塊 1140px。

  • 針對螢幕寬度 992px ~ 1199px,版面主內容區塊 960px。

  • 針對螢幕寬度 768px ~ 991px,版面主內容區塊 720px。

  • 針對螢幕寬度 576px ~ 767px,版面主內容區塊 540px。

  • 針對螢幕寬度 0px ~ 575px,版面主內容區塊 100%。

例:

Responsive:響應式

概念:不論使用者用的螢幕裝置為何(桌機、平板、手機等),版面要能夠自動的調整,以維持易讀性、易用性,讓使用者能夠正常的使用、操作。

以上概念,並非是擇一使用,通常一個網頁當中,是這些概念的混用,以達成我們要呈現給使用者的介面。

範例觀察

例:。

台灣雕塑學會
https://jamesblasco.github.io/fluid_layout/#/
網站