Browse Source

更改头部栏bug

mabaoyi 4 tháng trước cách đây
mục cha
commit
386487bf01
4 tập tin đã thay đổi với 138 bổ sung119 xóa
  1. 21 20
      dist/index.html
  2. 2 1
      src/assets/css/common.less
  3. 8 3
      src/components/Layout/header.vue
  4. 107 95
      src/view/Home/index.vue

+ 21 - 20
dist/index.html

@@ -1,21 +1,21 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="UTF-8" />
-    <link
-      rel="icon"
-      type="image/svg+xml"
-      href="./src/assets/image/a8e890b2-ad35-490e-b0cc-1548d7dd1401.png"
-    />
-    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>云厂长</title>
-    <script type="module" crossorigin src="./assets/index-_cB-BSHh.js"></script>
-    <link rel="stylesheet" crossorigin href="./assets/index-CNV4glNT.css">
-  </head>
-  <body>
-    <div id="app"></div>

-  </body>
-</html>
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <link
+      rel="icon"
+      type="image/svg+xml"
+      href="./src/assets/image/a8e890b2-ad35-490e-b0cc-1548d7dd1401.png"
+    />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <title>云厂长</title>
+    <script type="module" crossorigin src="./assets/index-BL8EDg4s.js"></script>
+    <link rel="stylesheet" crossorigin href="./assets/index-CD_R4eA_.css">
+  </head>
+  <body>
+    <div id="app"></div>
+  </body>
+</html>
 <style lang="scss">* {
   margin: 0;
   padding: 0;
@@ -26,14 +26,15 @@ html {
   margin: 0;
   padding: 0;
   border-radius: 0;
-  overflow: hidden;
+  overflow-x: hidden;
 }
 #app {
   width: 100%;
   min-height: 100vh;
+  overflow: hidden;
 }
 button:hover {
   opacity: 0.7;
   transform: scale(1.1, 1.1);
 }
-</style>
+</style>

+ 2 - 1
src/assets/css/common.less

@@ -8,13 +8,14 @@ html {
   margin: 0;
   padding: 0;
   border-radius: 0;
-  overflow: hidden;
+  overflow-x: hidden;
 }
 #app {
   width: 100%;
   min-height: 100vh;
   // overflow-x: hidden;
   // overflow: hidden;
+  overflow: hidden;
 }
 
 button:hover {

+ 8 - 3
src/components/Layout/header.vue

@@ -86,15 +86,15 @@
         价格
       </p>
       <p class="select-content">
-        <el-dropdown placement="bottom-start" @visible-change="handleOpen"
+        <el-dropdown placement="bottom-start" @visible-change="handleOpen1"
           ><p
             class="product"
             :class="{
               selected: route.path == '/video' || route.path == '/handbook',
             }"
           >
-            <span>知识库</span> <el-icon v-if="isOpen"><ArrowDown /></el-icon
-            ><el-icon v-if="!isOpen"><ArrowUp /></el-icon>
+            <span>知识库</span> <el-icon v-if="isOpen1"><ArrowDown /></el-icon
+            ><el-icon v-if="!isOpen1"><ArrowUp /></el-icon>
           </p>
           <template #dropdown>
             <el-dropdown-menu>
@@ -206,12 +206,17 @@ const logout = () => {
 
 //判断是打开还是收起
 const isOpen = ref(true);
+const isOpen1 = ref(true);
 
 //下拉打开
 const handleOpen = () => {
   isOpen.value = !isOpen.value;
 };
 
+const handleOpen1 = () => {
+  isOpen1.value = !isOpen1.value;
+};
+
 //跳转主页
 const toHomepage = (str: string) => {
   router.push({

+ 107 - 95
src/view/Home/index.vue

@@ -1,61 +1,51 @@
 <template>
-  <div class="scroll-container" @scroll="handleScroll">
-    <Banne :banneImageList="imgList.banneImageList" />
-    <div class="video-information animate__animated animate__bounceInUp">
-      <div class="conetnt">
-        <video
-          class="video-1"
-          :src="introduceVideo.introduction_video"
-          controls
-          autoplay
-          muted
-          loop
-        ></video>
-        <div>
-          <p class="brief-introduction">云厂长视频简介</p>
-          <p class="information">
-            {{ introduceVideo.introduction_content }}
-          </p>
-          <div class="btn-list">
-            <button class="explanation btn" @click="toDocument">
-              十分钟详解</button
-            ><button class="btn" @click="startTrial">开始试用</button
-            ><button class="btn" @click="toPlugIn">插件介绍</button>
-          </div>
+  <Banne :banneImageList="imgList.banneImageList" />
+  <div class="video-information animate__animated animate__bounceInUp">
+    <div class="conetnt">
+      <video
+        class="video-1"
+        :src="introduceVideo.introduction_video"
+        controls
+        autoplay
+        muted
+        loop
+      ></video>
+      <div>
+        <p class="brief-introduction">云厂长视频简介</p>
+        <p class="information">
+          {{ introduceVideo.introduction_content }}
+        </p>
+        <div class="btn-list">
+          <button class="explanation btn" @click="toDocument">十分钟详解</button
+          ><button class="btn" @click="startTrial">开始试用</button
+          ><button class="btn" @click="toPlugIn">插件介绍</button>
         </div>
       </div>
     </div>
-    <SolveQuestion />
-    <FunctionIntroduction />
-    <Project />
-    <WhyFactoryDirector />
-    <UserSound />
-    <Increase @contant="contant" />
-
-    <Bottom />
-    <AnchorPoint />
-    <Form :dialogTableVisible2="dialogTableVisible2" @clos="close" />
-    <ContactExpert :dialogTableVisible="dialogTableVisible" @close="close" />
   </div>
+  <SolveQuestion v-if="showAssembly.showSolve" />
+  <FunctionIntroduction v-if="showAssembly.showIntroduction" />
+  <Project v-if="showAssembly.showProject" />
+  <WhyFactoryDirector v-if="showAssembly.showDirector" />
+  <UserSound v-if="showAssembly.showSound" />
+  <Increase @contant="contant" />
+
+  <Bottom />
+  <AnchorPoint />
+  <Form :dialogTableVisible2="dialogTableVisible2" @clos="close" />
+  <ContactExpert :dialogTableVisible="dialogTableVisible" @close="close" />
 </template>
 <script lang="ts" setup>
 import "animate.css";
-import {
-  ref,
-  reactive,
-  onMounted,
-  nextTick,
-  defineAsyncComponent,
-  shallowRef,
-} from "vue";
+import { ref, reactive, onMounted, watch } from "vue";
 import { getBanneList } from "../../api/home";
 import { config } from "../../api/config";
 import Banne from "../../components/Banne/index.vue";
-// import SolveQuestion from "./component/solveQuestion.vue";
-// import Project from "./component/project.vue";
+import SolveQuestion from "./component/solveQuestion.vue";
+import Project from "./component/project.vue";
 import Bottom from "../../components/Layout/bottom.vue";
 import FunctionIntroduction from "./component/functionIntroduction.vue";
-// import WhyFactoryDirector from "./component/whyFactoryDirector.vue";
+import WhyFactoryDirector from "./component/whyFactoryDirector.vue";
 import UserSound from "./component/userSound.vue";
 import Increase from "./component/increase.vue";
 import Form from "../../components/Form/from.vue";
@@ -70,57 +60,22 @@ const imgList = reactive({
   banneImageList: [],
 });
 
-let SolveQuestion: any = shallowRef("");
-// let FunctionIntroduction: any = ref("");
-let Project: any = shallowRef("");
-let WhyFactoryDirector: any = shallowRef("");
-// let UserSound: any = ref("");
-// let Increase: any = ref("");
-// let Bottom: any = ref("");
+const showAssembly = reactive({
+  showSolve: false,
+  showIntroduction: false,
+  showProject: false,
+  showDirector: false,
+  showSound: false,
+});
 
 const dialogTableVisible2 = ref(false);
 const dialogTableVisible = ref(false);
 
 const introduceVideo: any = ref({});
 
-function handleScroll(event) {
+const handleScroll = (event: any) => {
   console.log("event", event.target.scrollTop);
-  if (event.target.scrollTop > 200 && SolveQuestion.value == "") {
-    SolveQuestion.value = defineAsyncComponent(() => {
-      return import("./component/solveQuestion.vue");
-    });
-  }
-  // if (event.target.scrollTop > 900 && FunctionIntroduction.value == "") {
-  //   FunctionIntroduction.value = defineAsyncComponent(() => {
-  //     return import("./component/functionIntroduction.vue");
-  //   });
-  // }
-  if (event.target.scrollTop > 1800 && Project.value == "") {
-    Project.value = defineAsyncComponent(() => {
-      return import("./component/project.vue");
-    });
-  }
-  if (event.target.scrollTop > 2400 && WhyFactoryDirector.value == "") {
-    WhyFactoryDirector.value = defineAsyncComponent(() => {
-      return import("./component/whyFactoryDirector.vue");
-    });
-  }
-  // if (event.target.scrollTop > 2900 && UserSound.value == "") {
-  //   UserSound.value = defineAsyncComponent(() => {
-  //     return import("./component/userSound.vue");
-  //   });
-  // }
-  // if (event.target.scrollTop > 3550 && Increase.value == "") {
-  //   Increase.value = defineAsyncComponent(() => {
-  //     return import("./component/increase.vue");
-  //   });
-  // }
-  // // if (event.target.scrollTop > 3550 && Bottom.value == "") {
-  // //   Bottom.value = defineAsyncComponent(() => {
-  // //     return import("../../components/Layout/bottom.vue");
-  // //   });
-  // // }
-}
+};
 
 //跳转产品文档
 const toDocument = () => {
@@ -189,17 +144,74 @@ const getInfo = () => {
   });
 };
 
+const data = reactive({
+  oldScrollTop: 0,
+});
+
+const scrolling = () => {
+  // 滚动条距文档顶部的距离
+  let scrollTop =
+    window.pageYOffset ||
+    document.documentElement.scrollTop ||
+    document.body.scrollTop;
+  // 滚动条滚动的距离
+
+  let scrollStep = scrollTop - data.oldScrollTop;
+  console.log("header 滚动距离 ", scrollTop);
+  if (scrollTop >= 100) {
+    showAssembly.showSolve = true;
+  }
+  if (scrollTop >= 800) {
+    showAssembly.showIntroduction = true;
+  }
+  if (scrollTop >= 1800) {
+    showAssembly.showProject = true;
+  }
+  if (scrollTop >= 2300) {
+    showAssembly.showDirector = true;
+  }
+  if (scrollTop >= 2800) {
+    showAssembly.showSound = true;
+  }
+  // 更新——滚动前,滚动条距文档顶部的距离
+  data.oldScrollTop = scrollTop;
+
+  //变量windowHeight是可视区的高度
+  let windowHeight =
+    document.documentElement.clientHeight || document.body.clientHeight;
+  //变量scrollHeight是滚动条的总高度
+  let scrollHeight =
+    document.documentElement.scrollHeight || document.body.scrollHeight;
+
+  //滚动条到底部的条件
+  if (scrollTop + windowHeight == scrollHeight) {
+    //你想做的事情
+    console.log("header  你已经到底部了");
+  }
+  if (scrollStep < 0) {
+    console.log("header 滚动条向上滚动了!");
+  } else {
+    console.log("header  滚动条向下滚动了!");
+  }
+  // 判断是否到了最顶部
+  if (scrollTop <= 0) {
+    console.log("header 到了最顶部");
+  }
+};
+watch(
+  () => window.scrollY,
+  (newVal) => {
+    console.log(newVal);
+  }
+);
+
 onMounted(() => {
+  window.addEventListener("scroll", scrolling);
+  console.log(window.scrollY);
   getInfo();
 });
 </script>
 <style lang="less" scoped>
-.scroll-container {
-  padding-bottom: 200px;
-  height: 100vh;
-  overflow-y: scroll;
-  overflow-x: hidden;
-}
 .video-information {
   display: flex;
   justify-content: center;