瀏覽代碼

first commit

syuanyuri 2 年之前
當前提交
0fc79a291c
共有 16 個文件被更改,包括 635 次插入0 次删除
  1. 304 0
      css/style.css
  2. 2 0
      css/style.css.map
  3. 178 0
      css/style.scss
  4. 二進制
      img/0413_基隆城市博覽會_主視覺_CMYK_橫式.png
  5. 二進制
      img/20220605_基隆城博RWD網頁設計_工作區域 1.png
  6. 二進制
      img/A.jpg
  7. 二進制
      img/B.jpg
  8. 二進制
      img/C.jpg
  9. 二進制
      img/K.jpg
  10. 二進制
      img/RWD-001.jpg
  11. 二進制
      img/RWD-002.jpg
  12. 二進制
      img/keyboard-button.png
  13. 二進制
      img/lighthouse.png
  14. 二進制
      img/基隆城市品牌 Logo-02.png
  15. 126 0
      index.html
  16. 25 0
      temporary.html

+ 304 - 0
css/style.css

@@ -0,0 +1,304 @@
+@charset "UTF-8";
+.container {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-orient: vertical;
+  -webkit-box-direction: normal;
+      -ms-flex-direction: column;
+          flex-direction: column;
+  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
+}
+
+.container img {
+  image-rendering: -webkit-optimize-contrast;
+}
+
+.container header {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  -ms-flex-pack: distribute;
+      justify-content: space-around;
+}
+
+@media (max-width: 767px) {
+  .container header {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+        -ms-flex-direction: column;
+            flex-direction: column;
+  }
+}
+
+.container .logo a {
+  text-decoration: none;
+  font-weight: bold;
+}
+
+.container .logo a h2 {
+  margin: 0;
+  color: #4653a2;
+  font-size: 50px;
+  text-shadow: 0px 0px 3px #fde301;
+}
+
+.container .logo a span {
+  color: #e7380d;
+}
+
+.container .logo a p {
+  margin: 0;
+  color: #009844;
+  font-size: 17px;
+  letter-spacing: 4px;
+}
+
+.container .banner {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  -webkit-box-pack: center;
+      -ms-flex-pack: center;
+          justify-content: center;
+  -webkit-box-orient: vertical;
+  -webkit-box-direction: normal;
+      -ms-flex-direction: column;
+          flex-direction: column;
+}
+
+.container .banner img {
+  width: 60%;
+  height: auto;
+}
+
+@media (max-width: 991px) {
+  .container .banner img {
+    width: 90%;
+  }
+}
+
+.container .banner section {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  -webkit-box-pack: center;
+      -ms-flex-pack: center;
+          justify-content: center;
+}
+
+.container .banner section img {
+  width: 50px;
+  height: 100%;
+}
+
+.container .banner section p {
+  margin-left: 15px;
+  color: #0076a5;
+  font-size: 45px;
+  font-weight: bold;
+}
+
+@media (max-width: 767px) {
+  .container .banner section p {
+    font-size: 30px;
+  }
+}
+
+.container .directions {
+  margin: 0 15%;
+  max-width: 900px;
+  font-weight: bold;
+}
+
+@media (max-width: 1200px) {
+  .container .directions {
+    margin: 0 10%;
+  }
+}
+
+@media (max-width: 767px) {
+  .container .directions {
+    margin: 0 5%;
+  }
+}
+
+.container .directions p {
+  margin: 0;
+  color: #0076a5;
+}
+
+.container .directions ul {
+  margin: 0;
+  padding: 0;
+  list-style: none;
+}
+
+.container .directions ul li {
+  line-height: 1.5;
+  letter-spacing: 1px;
+}
+
+.container .directions .keyboard {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+}
+
+.container .directions .keyboard img {
+  width: 13%;
+  height: 100%;
+  margin-right: 10px;
+  margin-top: -10px;
+}
+
+.container .content {
+  padding: 0 15%;
+}
+
+@media (max-width: 1200px) {
+  .container .content {
+    padding: 0 10%;
+  }
+}
+
+@media (max-width: 767px) {
+  .container .content {
+    padding: 0 5%;
+  }
+}
+
+.container .content img {
+  width: 50%;
+  height: auto;
+}
+
+@media (max-width: 991px) {
+  .container .content img {
+    width: 100%;
+  }
+}
+
+.container .content .video {
+  width: 100%;
+  height: 540px;
+  margin-top: 35px;
+  background-color: #000;
+}
+
+.container .content .box {
+  width: 100%;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  margin: 20px 0;
+}
+
+@media (max-width: 991px) {
+  .container .content .box {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+        -ms-flex-direction: column;
+            flex-direction: column;
+  }
+  .container .content .box:nth-child(even) {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: reverse;
+        -ms-flex-direction: column-reverse;
+            flex-direction: column-reverse;
+  }
+}
+
+.container .content .box p {
+  width: 50%;
+  margin: 0 50px;
+  font-weight: bold;
+  letter-spacing: 1px;
+  line-height: 1.5;
+}
+
+@media (max-width: 991px) {
+  .container .content .box p {
+    width: 100%;
+    margin: 20px 0;
+  }
+}
+
+.container footer {
+  margin: auto;
+}
+
+.container footer h2 {
+  font-size: 70px;
+  color: #fff100;
+  text-shadow: 0px 0px 2px #000;
+}
+
+@media (max-width: 991px) {
+  .container footer h2 {
+    margin: 0;
+  }
+}
+
+.container footer .logo {
+  margin: 0 15px;
+}
+
+@media (max-width: 991px) {
+  .container footer .logo {
+    margin: 15px 0;
+  }
+}
+
+.container footer .logo a h2 {
+  font-size: 40px;
+}
+
+.container footer .text-box {
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+}
+
+@media (max-width: 991px) {
+  .container footer .text-box {
+    -webkit-box-orient: vertical;
+    -webkit-box-direction: normal;
+        -ms-flex-direction: column;
+            flex-direction: column;
+  }
+}
+
+.container footer .text-box p {
+  margin: 0;
+}
+
+.container footer .text-box p:first-child {
+  color: #4553a3;
+  font-weight: bold;
+  font-size: 20px;
+}
+
+.container footer .text-box p:last-child {
+  font-weight: bold;
+  letter-spacing: 1px;
+}
+/*# sourceMappingURL=style.css.map */

File diff suppressed because it is too large
+ 2 - 0
css/style.css.map


+ 178 - 0
css/style.scss

@@ -0,0 +1,178 @@
+.container {
+  display: flex;
+  flex-direction: column;
+  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
+  img {
+    image-rendering: -webkit-optimize-contrast;
+  }
+  header {
+    display: flex;
+    align-items: center;
+    justify-content: space-around;
+    @media (max-width: 767px) {
+      flex-direction: column;
+    }
+  }
+  .logo a {
+    text-decoration: none;
+    font-weight: bold;
+    h2 {
+      margin: 0;
+      color: #4653a2;
+      font-size: 50px;
+      text-shadow: 0px 0px 3px #fde301;
+    }
+    span {
+      color: #e7380d;
+    }
+    p {
+      margin: 0;
+      color: #009844;
+      font-size: 17px;
+      letter-spacing: 4px;
+    }
+  }
+  .banner {
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    flex-direction: column;
+    img {
+      width: 60%;
+      height: auto;
+      @media (max-width: 991px) {
+        width: 90%;
+       }
+    }
+    section {
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      img {
+        width: 50px;
+        height: 100%;
+      }
+      p {
+        margin-left: 15px;
+        color: #0076a5;
+        font-size: 45px;
+        font-weight: bold;
+        @media (max-width: 767px) {
+          font-size: 30px;
+        }
+      }
+    }
+  }
+  .directions {
+    margin: 0 10%;
+    max-width: 900px;
+    font-weight: bold;
+    @media (max-width: 767px) {
+      margin: 0 5%;
+    }
+    p {
+      margin: 0;
+      color: #0076a5;
+    }
+    ul {
+      margin: 0;
+      padding: 0;
+      list-style: none;
+      li {
+        line-height: 1.5;
+        letter-spacing: 1px;
+      }
+    }
+    .keyboard {
+      display: flex;
+      align-items: center;
+      img {
+        width: 13%;
+        height: 100%;
+        margin-right: 10px;
+        margin-top: -10px;
+      }
+    }
+  }
+  .content {
+    padding: 0 10%;
+    @media (max-width: 767px) {
+      padding: 0 5%;
+    }
+    img {
+      width: 50%;
+      height: auto;
+      @media (max-width: 991px) {
+        width: 100%;
+      }
+    }
+    .video {
+      width: 100%;
+      height: 540px;
+      margin-top: 35px;
+      background-color: #000;
+    }
+    .box {
+      width: 100%;
+      display: flex;
+      align-items: center;
+      margin: 20px 0;
+      @media (max-width: 991px) {
+        flex-direction: column;
+        &:nth-child(even) {
+          flex-direction: column-reverse;
+        }
+      }
+      p {
+        width: 50%;
+        margin: 0 50px;
+        font-weight: bold;
+        letter-spacing: 1px;
+        line-height: 1.5;
+        @media (max-width: 991px) {
+          width: 100%;
+          margin: 20px 0;
+        }
+      }
+    }
+  }
+  footer {
+    margin: auto;
+    h2 {
+      font-size: 70px;
+      color: #fff100;
+      text-shadow: 0px 0px 2px #000;
+      @media (max-width: 991px) {
+       margin: 0;
+      }
+    }
+    .logo {
+      margin: 0 15px;
+      @media (max-width: 991px) {
+        margin: 15px 0;
+       }
+      a h2 {
+        font-size: 40px;
+      }
+    }
+    .text-box {
+      display: flex;
+      align-items: center;
+      @media (max-width: 991px) {
+        flex-direction: column;
+      }
+      p {
+        margin: 0;
+      }
+      p:first-child {
+        color: #4553a3;
+        font-weight: bold;
+        font-size: 20px;
+      }
+      p:last-child {
+        font-weight: bold;
+        letter-spacing: 1px;
+      }
+    }
+  }
+}

二進制
img/0413_基隆城市博覽會_主視覺_CMYK_橫式.png


二進制
img/20220605_基隆城博RWD網頁設計_工作區域 1.png


二進制
img/A.jpg


二進制
img/B.jpg


二進制
img/C.jpg


二進制
img/K.jpg


二進制
img/RWD-001.jpg


二進制
img/RWD-002.jpg


二進制
img/keyboard-button.png


二進制
img/lighthouse.png


二進制
img/基隆城市品牌 Logo-02.png


+ 126 - 0
index.html

@@ -0,0 +1,126 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <link rel="stylesheet" href="/css/style.css">
+  <title>基隆城市博覽會</title>
+</head>
+
+<body>
+
+  <div class="container">
+    <header>
+      <img src="/img/基隆城市品牌 Logo-02.png" alt="">
+      <section class="logo">
+        <a href="">
+          <h2>元宇宙<span>線上觀展</span></h2>
+          <p>https://chuzmo.com/HxXfN9r</p>
+        </a>
+      </section>
+    </header>
+
+    <div class="banner">
+      <img src="/img/0413_基隆城市博覽會_主視覺_CMYK_橫式.png" alt="">
+      <section>
+        <img src="/img/lighthouse.png" alt="">
+        <p>隨時逛隨時看,無限精彩</p>
+      </section>
+    </div>
+
+    <div class="directions">
+      <p>【元宇宙觀展操作說明】</p>
+      <ul>
+        <li>1. 點擊上方Banner即可進入元宇宙展間,24小時皆可進入展間。</li>
+        <li>2. 建議使用手機網路瀏覽器及4G網路,在使用上較為順暢;電腦請利用Chrome瀏覽器開啟。</li>
+        <li>3. 進入連結後請依序按「Join Room」、「Accept」、「Enter Room」,以進入元宇宙展間。</li>
+        <li>4. 同時線上人流以100人為限,若畫面無法正常顯示,請檢查網路後再行嘗試。
+        </li>
+        <li class="keyboard">
+          <img src="/img/keyboard-button.png" alt="">
+          5. 操作以方法為WASD控制前進後退,滑鼠可以控制視角方向<br>
+          如果是使用手機的朋友,以兩根手指放大縮小即可移動,動動手指滑螢幕可調整您的視角。<br>
+          在畫面的下方,Voice可以將麥克風靜音,以方便您的聲音不會被麥克風收音到,<br>
+          曝光您的聲音;Chat可以打字與其他人聊天
+        </li>
+      </ul>
+    </div>
+
+    <div class="content">
+      <div class="video">
+      </div>
+
+      <div class="box">
+        <img src="/img/RWD-001.jpg" alt="">
+        <img src="/img/RWD-002.jpg" alt="">
+      </div>
+
+      <div class="box">
+        <img src="/img/A.jpg" alt="">
+        <p>A展區主要配置為導覽影片為主,<br>
+          本區主要以右方西二倉庫及舊火車站、海上導覽宣傳為主,<br>
+          置入山海鳴光、海境、人間系列裝置藝術素材照片以及<br>
+          起點城市、山海洄游光雕秀之展示影片
+          </p>
+      </div>
+
+      <div class="box">
+        <p>B展區從正濱舊漁會大樓、和平島及地方飲食特展照片展。<br>
+          觀看B展區導覽影片,與其後方即有在正濱漁港彩色屋的<br>
+          海派浪漫光雕秀模擬影片觀看,展現正濱漁港夜晚之美<br>
+          以此展現基隆港區的地方特色與夜晚的燈光秀等活動。
+          </p>
+        <img src="/img/B.jpg" alt="">
+      </div>
+
+      <div class="box">
+        <img src="/img/C.jpg" alt="">
+        <p>C展區策展場域以海科館為主題,「以聽見海洋多元的聲音」為主題<br>
+          可以將會場的不同樂曲置入在C展區的場域內,搭配C區導覽影片,<br>
+          輔以市集、風光語海音樂會及開放式漁村學堂之照片及說明,<br>
+          由iOCEAN與海之聲展示影片,讓觀展人更可以了解到<br>
+          該展覽活動的主旨,<br>
+          在觀覽該區域的時候可以感受基隆從漁村轉型到現在的各個階段。
+          </p>
+      </div>
+
+      <div class="box">
+        <p>K副展區包含發灣歷史文化園區與基隆要塞司令部,<br>
+          本次城市博覽會將在要塞司令部內進行<br>
+          沉浸式多媒體互動展、大型藝術裝置陳設會場照片作為主題
+          </p>
+        <img src="/img/K.jpg" alt="">
+      </div>
+    </div>
+
+    <div class="directions">
+      <p>【問題排除】</p>
+      <ul>
+        <li>1. 元宇宙影片無法正常撥放時,請檢查網路後重新登入,讓瀏覽器能夠正確連接元宇宙伺服器。</li>
+        <li>2. 若AI導覽員講話時斷斷續續,請檢查是否有開其他軟體or程式,避免連線效能不彰導致連線不穩。</li>
+      </ul>
+    </div>
+
+    <footer>
+      <div class="text-box">
+        <h2>城市博覽會</h2>
+        <section class="logo">
+          <a href="">
+            <h2>元宇宙<span>線上觀展</span></h2>
+            <p>https://chuzmo.com/HxXfN9r</p>
+          </a>
+        </section>
+        <section>
+          <p>隨時逛隨時看,無限精彩</p>
+          <p>
+            線上觀展時間:06.10-06-23 <br>
+            每日導覽時間:11:00、14:00,每場約 20 分鐘
+          </p>
+        </section>
+      </div>
+    </footer>
+  </div>
+</body>
+</html>

+ 25 - 0
temporary.html

@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <link rel="stylesheet" href="/css/style.css">
+  <title>基隆城市博覽會</title>
+</head>
+
+<body>
+  <div class="container">
+    <header>
+      <img src="/img/基隆城市品牌 Logo-02.png" alt="">
+      <section class="logo">
+        <a href="">
+          <h2>元宇宙<span>線上觀展</span></h2>
+          <p>https://chuzmo.com/HxXfN9r</p>
+        </a>
+      </section>
+    </header>
+  </div>
+</body>
+</html>

Some files were not shown because too many files changed in this diff