Selaa lähdekoodia

update, fix issues

huai-sian 3 vuotta sitten
vanhempi
commit
9c6b6892fe
6 muutettua tiedostoa jossa 228 lisäystä ja 19 poistoa
  1. 45 1
      css/style.css
  2. 0 0
      css/style.css.map
  3. 34 1
      css/style.scss
  4. 116 0
      form.html
  5. BIN
      imgs/white.png
  6. 33 17
      index_withoutAmp.html

+ 45 - 1
css/style.css

@@ -611,11 +611,23 @@ input[type="radio"][class="style"]:checked + label {
   background-color: transparent;
   padding: .5rem 1rem;
   color: #FFCC00;
+  -webkit-transition: all .4s;
+  transition: all .4s;
+}
+
+.btn-yellow:hover {
+  background-color: rgba(255, 255, 255, 0.246);
 }
 
 .btn-yellow__fill {
   color: black;
   background-color: #FFCC00;
+  -webkit-transition: all .4s;
+  transition: all .4s;
+}
+
+.btn-yellow__fill:hover {
+  background-color: #ffcc0078;
 }
 
 .btn-blue {
@@ -625,6 +637,12 @@ input[type="radio"][class="style"]:checked + label {
   background-color: #2980B8;
   color: white;
   padding: .5rem 1rem;
+  -webkit-transition: all .4s;
+  transition: all .4s;
+}
+
+.btn-blue:hover {
+  background-color: #0e7fc5;
 }
 
 .nav-link {
@@ -856,7 +874,7 @@ input[type="radio"][class="style"]:checked + label {
 
 .condition .imgfr {
   position: absolute;
-  left: 0;
+  left: 5rem;
   bottom: -3.5rem;
   width: 22rem;
   height: 22rem;
@@ -929,4 +947,30 @@ input[type="radio"][class="style"]:checked + label {
     max-width: 1190px;
   }
 }
+
+@media (min-width: 1400px) {
+  .condition .container {
+    max-width: 1190px;
+  }
+}
+
+.dropdown-menu__bg {
+  background-color: white;
+}
+
+@media (max-width: 576px) {
+  .dropdown-menu__bg {
+    background-color: transparent;
+  }
+}
+
+.dropdown-menu__bg a {
+  color: black;
+}
+
+@media (max-width: 576px) {
+  .dropdown-menu__bg a {
+    color: white;
+  }
+}
 /*# sourceMappingURL=style.css.map */

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
css/style.css.map


+ 34 - 1
css/style.scss

@@ -568,9 +568,17 @@ input[type="radio"][class="style"]:checked + label {
 	background-color: transparent;
 	padding: .5rem 1rem;
 	color: $yellow;
+	transition: all .4s;
+	&:hover {
+		background-color: rgba(255, 255, 255, 0.246);
+	}
 	&__fill {
 		color: black;
 		background-color: $yellow;
+		transition: all .4s;
+		&:hover {
+			background-color: #ffcc0078;
+		}
 	}
 }
 
@@ -581,6 +589,10 @@ input[type="radio"][class="style"]:checked + label {
 	background-color: #2980B8;
 	color: white;
 	padding: .5rem 1rem;
+	transition: all .4s;
+	&:hover {
+		background-color: #0e7fc5;
+	}
 }
 
 .nav-link {
@@ -770,7 +782,7 @@ input[type="radio"][class="style"]:checked + label {
 .condition {
 	.imgfr {
 		position: absolute;
-		left: 0;
+		left: 5rem;
 		bottom: -3.5rem;
 		width: 22rem;
 		height: 22rem;
@@ -834,4 +846,25 @@ input[type="radio"][class="style"]:checked + label {
 		}
 	}
 }
+
+.condition {
+	.container {
+		@media (min-width: 1400px){
+			max-width: 1190px;
+		}
+	}
+}
+
+.dropdown-menu__bg {
+	background-color: white;
+	@media (max-width: 576px){
+		background-color: transparent;
+	}
+	a {
+		color: black;
+		@media (max-width: 576px){
+			color: white;
+		}
+	}
+}
  

+ 116 - 0
form.html

@@ -0,0 +1,116 @@
+<!doctype html>
+<html ⚡ lang="en">
+  <head>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width">
+    <link rel="canonical" href="/article.html">
+    <link rel="shortcut icon" href="amp_favicon.png">
+    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
+        integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
+        rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
+        crossorigin="anonymous">
+    <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
+    <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
+    <link rel="stylesheet" href="css/style.css">
+
+    <script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/shell.js"></script>
+    <title>Choozmo AI無人電視台-公益頻道</title>
+
+    <style amp-custom>
+      body {
+        width: auto;
+        margin: 0;
+        padding: 0;
+      }
+      .container.loaded {
+        max-width: 800px;
+        background: #fff;
+        box-shadow: 0 4px 8px 0 rgb(53, 105, 128, .3), 0 6px 20px 0 rgb(165, 200, 213, .41);
+        margin-bottom: 6rem;
+        transform: translateY(6rem);
+      }
+      .hero {
+        height: 120vh;
+      }
+      @media (max-width: 576px) {
+        .hero {
+          height: 140vh;
+        }
+      }
+    </style>
+
+  </head>
+  <body>
+    <!-- <amp-mega-menu height="65" layout="fixed-height">
+      <nav class="d-flex align-items-center">
+        <span>
+          <a href="/" >
+            <img src="./imgs/Choozmo cloud logo.png" alt="" width="160">
+          </a>
+        </span>
+         <ul class="ms-auto">
+          <li>
+            <a href="https://amp.dev/">Link</a>
+          </li>
+          <li>
+            <a href="https://amp.dev/">Link</a>
+          </li>
+        </ul> 
+      </nav>
+    </amp-mega-menu> -->
+    <main>
+      <section class="hero container-fluid">
+        <h1 class="text-center text-light d-block mx-auto mb-0" style="transform: translateY(3rem);">加入夥伴</h1>
+        <div class="container loaded" style="padding: 4rem auto;">
+          <div style="padding: 40px;">
+            <script>
+              hbspt.forms.create({
+              region: "na1",
+              portalId: "20485755",
+              formId: "081f46da-1ce0-4e53-b8e6-d1e718b142aa"
+            });
+            </script>
+          </div>
+        </div>
+      </section>
+      <footer class="footer">
+        <div class="container">
+            <div class="row">
+                <div class="col-xs-12 col-sm-6">
+                  <div class="mx-auto">
+                    <img src="./imgs/CMM_LOGO.png" alt="" width="200" class="mx-auto">
+                    <div class="footer-follow">關注我們</div>
+                    <div class="footer-socials">
+                        <a href="https://www.linkedin.com/company/choozmo/"><img src="https://i.imgur.com/qnd9QrT.png" alt="" width="32px" height="32px"></a>
+                        <a href="https://www.facebook.com/choozmo/"><img src="https://i.imgur.com/WdCAhSo.png" alt="" width="48px" height="48px"></a>
+                        <a href="https://line.me/R/ti/p/@choozmo?from=page"><img src="https://i.imgur.com/dNZ2aGW.png" alt="" width="32px" height="32px"></a>
+                        <a href="https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg"><img src="https://i.imgur.com/zn6DUY8.png" alt="" width="32px" height="32px"></a>
+                        <a href="https://www.instagram.com/choozmo_cmm/"><img src="https://i.imgur.com/pdJPY7m.png" alt="" width="48px" height="48px"></a>
+                        <a href="https://twitter.com/ai_cmm"><img src="https://i.imgur.com/qGBzq4J.png" alt="" width="32px" height="32px"></a>
+                    </div>
+                  </div>
+                </div>
+                <div class="col-xs-12 col-sm-6 right-column">
+                    <div class="footer-contacts mx-auto">
+                        <h5>CONTACT</h5>
+                        <div>
+                            集仕多股份有限公司<br>新竹縣竹北市復興二路229號9樓之9<br>聯絡電話:036670804<br>聯絡信箱:SERVICE@CHOOZMO.COM
+                        </div>
+                    </div>
+                </div>
+            </div>
+        </div>
+      </footer>
+    </main>
+    <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
+        integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
+        crossorigin="anonymous"></script>
+    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
+        integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
+        crossorigin="anonymous"></script>
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
+    <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
+    
+  </body>
+</html>

BIN
imgs/white.png


+ 33 - 17
index_withoutAmp.html

@@ -14,7 +14,11 @@
     <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
     <link rel="stylesheet" href="css/style.css">
 
-    <title>News Article</title>
+    <!-- Start of HubSpot Embed Code -->
+    <script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/20485755.js"></script>
+    <!-- End of HubSpot Embed Code -->
+
+    <title>Choozmo AI無人電視台-公益頻道</title>
 
     <style amp-custom>
       body {
@@ -49,7 +53,7 @@
           <nav class="navbar navbar-expand-lg navbar-light">
             <div class="container-fluid mt-2">
               <a class="navbar-brand" href="#">
-                <img src="./imgs/CMM_LOGO_白.png" alt="" width="140"  class="d-inline-block align-text-top">
+                <img src="./imgs/white.png" alt="" width="140"  class="d-inline-block align-text-top">
               </a>
               <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
                 <span class="navbar-toggler-icon"></span>
@@ -62,11 +66,17 @@
                   <li class="nav-item">
                     <a class="nav-link text-light linktoSection" data-section="#section2">合作夥伴</a>
                   </li>
-                  <li class="nav-item">
-                    <a class="nav-link text-light" href="#">AI無人電視台</a>
+                  <li class="nav-item dropdown">
+                    <a class="nav-link text-light dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
+                      AI無人電視台
+                    </a>
+                    <ul class="dropdown-menu border-0 dropdown-menu__bg" aria-labelledby="navbarDropdownMenuLink">
+                      <li><a class="dropdown-item" target="_blank" href="https://www.youtube.com/channel/UC4ZtyNohnIt3F296Mf202Jg">科技頻道</a></li>
+                      <li><a class="dropdown-item" target="_blank" href="https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg">趨勢日報</a></li>
+                    </ul>
                   </li>
                   <li class="nav-item">
-                    <a class="nav-link text-light" href="https://ai.choozmo.com/aboutus/info/">關於集仕多</a>
+                    <a class="nav-link text-light" href="https://ai.choozmo.com/aboutus/info/" target="_blank">關於集仕多</a>
                   </li>
                 </ul>
               </div>
@@ -77,9 +87,9 @@
               <h2 class="text-light hero__h2">AI無人電視台<br>公益頻道</h2>
               <p class="text-light mt-4 mb-5">集仕多使用AI Spokesgirl技術 訪問默默幫助社會的NGO,<br>也許你第一次認識它、或是遺忘了,<br>
                 但AI 幫你記著,讓AI主播帶您重新認識NGO...</p>
-              <div class="d-flex "text-light">
-                <button class="btn-yellow me-3" onclick="window.open('https://ai.choozmo.com/')">了解AI主播</button>
-                <button class="btn-yellow btn-yellow__fill" onclick="window.open('https://www.youtube.com/channel/UC2Qda9PhJWuiMTCZ-j7K_hg')">公益頻道</button>
+              <div class="d-flex text-light">
+                <button class="btn-yellow me-3 " onclick="window.open('https://ai.choozmo.com/')">了解AI主播</button>
+                <button class="btn-yellow btn-yellow__fill" onclick="window.open('https://www.youtube.com/channel/UCsKs916yiaSfC9RJnBwOcfw')">公益頻道</button>
               </div>
             </div>
             <div class="col"></div>
@@ -88,7 +98,8 @@
       </section>
       <section class="logos" style="background-color: white;padding: 3.5rem 0;">
         <div class="container text-center">
-          <h3 style="color: black;margin-bottom: 1.5rem;" class="text-center">用AI的世界看見愛、跟NGO一起做公益。</h3>
+          <h3 style="color: black;margin-bottom: 1.5rem;" class="text-center d-none d-md-block" class="">用AI的世界看見愛、跟NGO一起做公益。</h3>
+          <h3 style="color: black;margin-bottom: 1.5rem;" class="text-center d-block d-md-none">用AI的世界看見愛,<br>跟NGO一起做公益。</h3>
           <p style="color: #4C4C4C;">在疫情的衝擊下,我們身後還有這群人默默幫助社會上的弱勢族群,集仕多使用AI<br>主播問答專訪的方式,帶您更了解這些人,而這些基金會需要您的幫助....</p>
           <button class="btn-yellow btn-yellow__fill mt-3 linktoSection" data-section="#section1">愛心捐款</button>
         </div>
@@ -102,16 +113,16 @@
                   <h3>在疫情下,對基金會造成了什麼影響?</h3>
                   <p>雖然遭受衝擊,但我們的愛心並未停歇。</p>
                 </div>
-                <div class="d-flex ">
-                  <div class="mx-3">
+                <div class="d-flex flex-column flex-md-row">
+                  <div class="mx-3 mb-2">
                     <h3><span id="days">737</span>天</h3>
                     <p>疫情已經經過了</p>
                   </div>
-                  <div class="mx-3">
+                  <div class="mx-3 mb-2">
                     <h3><span id="percent1">30</span>%-<span id="percent2">50</span>%</h3>
                     <p>愛心捐款下降</p>
                   </div>
-                  <div class="mx-3">
+                  <div class="mx-3 mb-2">
                     <h3><span id="percent3">30</span>%</h3>
                     <p>團體取消的活動</p>
                   </div>
@@ -405,7 +416,7 @@
                 <div class="card-body p-4">
                   <h5 class="card-title text-start">度度客群眾募資平台</h5>
                   <p class="card-text text-start">度度客dodoker是一個群眾募資平台,擔任陪跑教練的角色,陪伴提案人發想,並推行社會公益群募專案,提供上架諮詢、前置研究、文案撰寫、短片拍攝、行銷宣傳等服務。
-                    我們希望透過網路科技及社群經營,協助提案人串連資源及發聲,集結眾人之力,改變或解決社會問題。
+                    我們希望透過網路科技及社群經營,集結眾人之力,改變或解決社會問題。
                   </p>
                   <p class="card-text">
                     <a href="https://www.dodoker.com/" target="_blank" class="d-flex align-items-center card-learn">
@@ -469,7 +480,7 @@
           <h2 style="margin-top: 0rem;color: black;" class="text-center">基金會夥伴</h2>
           <div class="row justify-content-center d-none d-md-block" style="margin: auto auto;">
             <div class="col-11" style="margin: 0 auto;">
-              <div class="row">
+              <div class="row justify-content-center">
                 <div class="col-6 col-md-4 logos__img mx-2" style="background-image: url(./imgs/tzuchi.png);"></div>
                 <div class="col-6 col-md-4 logos__img mx-2" style="background-image: url(./imgs/guide_dog.png);"></div>
                 <div class="col-6 col-md-4 logos__img mx-2" style="background-image: url(./imgs/women_rescue.png);"></div>
@@ -497,7 +508,7 @@
           </div> 
           <div class="row justify-content-center d-block d-md-none" style="margin: auto auto;">
             <div class="col-11" style="margin: 0 auto;">
-              <div class="row">
+              <div class="row justify-content-center">
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/tzuchi.png);"></div>
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/guide_dog.png);"></div>
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/women_rescue.png);"></div>
@@ -506,11 +517,16 @@
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/books.jpg);"></div>
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/dodoker.svg);"></div>
                 <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/yoyuen.png);"></div>
-                <div class="col-6 logos__img mx-auto" style="background-image: url(./imgs/天下顧問.jpg);"></div>
+                <div class="col-6 logos__img mx-auto text-center text-dark">
+                  <div class="logos__img mx-auto" style="background-image: url(./imgs/天下顧問.jpg);width: 10rem;"></div>
+                  <small class="d-inline-block " style="transform: translateY(-.8rem);">B型企業</small>
+                </div>
               </div>
 
             </div>
           </div>
+
+          <button class="btn-blue mt-5 mx-auto d-block" onclick="window.open('./form.html')">成為夥伴</button>
           </div>
         </div>
       </section>

Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä