index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. <template>
  2. <div id="content" class="vflex">
  3. <div class="js_snap js_intro is_top is_started" data-snap-needs-cancel="" data-enable-bit-scroll="" data-top="">
  4. <header id="header">
  5. <div class="inner">
  6. <div class="btn menu fixed">
  7. <button class="fit" @mouseover="mouseOver()" @mouseleave="mouseLeave()" :class="over?'over':''" @click="toshow()">
  8. <ul class="absolute full__w" v-if="!show" style="left: 0">
  9. <li class="absolute" :class="over?'absolute1':''"></li>
  10. <li class="absolute" :class="over?'absolute2':''"></li>
  11. <li class="absolute" :class="over?'absolute3':''"></li>
  12. </ul>
  13. <ul class="absolute full__w" v-if="show">
  14. <li class="absolute_1" :class="over?'absolute_11':''"></li>
  15. <li class="absolute_2"></li>
  16. <li class="absolute_3" :class="over?'absolute_33':''"></li>
  17. </ul>
  18. </button>
  19. </div>
  20. </div>
  21. <!-- 点击弹出的黑框 -->
  22. <div id="floating_menu" ref="floating_menu">
  23. <div class="inner">
  24. <div class="frame">
  25. <div class="title1">绿巍仿真植物有限公司</div>
  26. <div class="line"></div>
  27. <div class="text_box point" @click="toDetail(1)">
  28. <div class="text1">产品服务</div>
  29. <div class="text2">Product Services</div>
  30. </div>
  31. <div class="text_box point" @click="toDetail(2)">
  32. <div class="text1">新闻资讯</div>
  33. <div class="text2">News</div>
  34. </div>
  35. <div class="text_box point" @click="toDetail(3)">
  36. <div class="text1">跨境贸易</div>
  37. <div class="text2">Cross-border Trade</div>
  38. </div>
  39. <div class="text_box point" @click="toDetail(4)">
  40. <div class="text1">关于我们</div>
  41. <div class="text2">About us</div>
  42. </div>
  43. <div class="text_box point" @click="toDetail(5)">
  44. <div class="text1">联系我们</div>
  45. <div class="text2">Contact us</div>
  46. </div>
  47. <div class="line"></div>
  48. </div>
  49. </div>
  50. </div>
  51. </header>
  52. </div>
  53. <div class="shua" :class="show_white?'shua_js':''"></div>
  54. <section class="one">
  55. <div class="videoContainer">
  56. <video id="back_video" :style="fixStyle" class="video fillWidth" muted autoplay loop playsinline preload="metadata" crossorigin="anoymous">
  57. <source :src="background" type="video/mp4" />
  58. </video>
  59. </div>
  60. <div class="subTitle">
  61. <h2 v-html="pageData.subTitle"></h2>
  62. </div>
  63. <div class="title">
  64. <div v-show="scroll_top == 0">
  65. <h1 :style="show_white?'color: #fff':''">{{pageData.title}}</h1>
  66. <div class="line" :style="show_white?'background: rgba(255,255,255,.5)':''"></div>
  67. <div class="hflex jbetween" v-show="show_white">
  68. <div class="text point">{{pageData.date}}</div>
  69. <div class="hflex point" @click="scorll_down(800)">
  70. <img class="down" src="@/assets/images/common/fv-arrow-down.svg" alt="" />
  71. <div class="text">向下滑动</div>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="content" v-html="pageData.content"></div>
  76. </div>
  77. <div class="icon_down vflex acenter jbetween" v-show="scroll_top > 200 && scroll_top < 1500" @click="scorll_down2(-1)">
  78. <img src="@/assets/images/common/icon-down-1.png" alt="" />
  79. <img src="@/assets/images/common/icon-down-2.png" alt="" />
  80. </div>
  81. </section>
  82. <div v-for="(item,index) in pageData.list" :key="index" class="two">
  83. <div class="video_bg" :id="'video' + index">
  84. <video :src="item.background" muted autoplay loop playsinline preload="metadata" crossorigin="anymous"></video>
  85. <div class="content hflex jbetween">
  86. <div class="content_left">
  87. <div class="name">{{ item.name }}</div>
  88. <div class="wenan" v-html="item.text"></div>
  89. </div>
  90. <div class="content_right vflex acenter jend">
  91. <div class="vflex acenter">
  92. <div v-for="(items,indexs) in pageData.list.length" :key="indexs">
  93. <div class="circle point" :class="index == indexs?'circle_active':''" @click="jump(indexs)"></div>
  94. </div>
  95. <div class="icon_down2 point vflex acenter jbetween" @click="scorll_down2(index + 1)">
  96. <img src="@/assets/images/common/icon-down-1.png" alt="" />
  97. <img src="@/assets/images/common/icon-down-2.png" alt="" />
  98. </div>
  99. </div>
  100. <div class="right_index">
  101. <span class="indexs">{{ index < 10 ? '0' + (index + 1) : index + 1 }}</span>
  102. <span>/{{ pageData.list.length < 10 ? '0' + pageData.list.length : pageData.list.length }}</span>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. <div class="three">
  109. <div class="video_bg">
  110. <video id="videos" :src="pageData.background" muted autoplay loop playsinline preload="metadata" crossorigin="anymous"></video>
  111. </div>
  112. <div class="three_text" v-html="pageData.text"></div>
  113. </div>
  114. <Footer></Footer>
  115. </div>
  116. </template>
  117. <script>
  118. import { getSlider } from '@/utils/common'
  119. import Footer from '@/components/footer.vue'
  120. var that = ''
  121. export default {
  122. name: 'index',
  123. components: {
  124. Footer
  125. },
  126. data() {
  127. return {
  128. show: false,
  129. over: false,
  130. show_white: false,
  131. fixStyle: {},
  132. pageData: {
  133. title: '绿巍仿真植物有限公司',
  134. subTitle: '<p>加密仿真草坪 </p><br><p>加密仿真草坪环保易用 </p>',
  135. date: '2023.01.01',
  136. content: `<p>注塑仿真草坪和编织仿真草坪</p><br><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`,
  137. background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
  138. list: [
  139. {
  140. background: require('@/assets/images/common/snsdyvideodownload.mp4'),
  141. name: '加密仿真草坪 ',
  142. text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
  143. },
  144. {
  145. background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
  146. name: '加密仿真草坪 ',
  147. text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
  148. },
  149. {
  150. background: require('@/assets/images/common/snsdyvideodownload.mp4'),
  151. name: '加密仿真草坪 ',
  152. text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
  153. },
  154. {
  155. background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
  156. name: '加密仿真草坪 ',
  157. text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
  158. },
  159. {
  160. background: require('@/assets/images/common/snsdyvideodownload.mp4'),
  161. name: '加密仿真草坪 ',
  162. text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
  163. }
  164. ],
  165. text: `<p>加密仿真草坪</p><p>防火阻燃,为生活增添一份色彩</p><p>注塑仿真草坪和编织仿真草坪</p><p>注塑仿真草坪采用注塑工艺</p><p>编织草坪以仿草叶状的合成纤维</p>`
  166. },
  167. background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
  168. scroll_top: 0,
  169. windowWidth: 0,
  170. windowHeight: 0,
  171. index: -1
  172. }
  173. },
  174. created() {
  175. that = this
  176. that.getData()
  177. },
  178. mounted() {
  179. this.getVideoStyle()
  180. window.addEventListener('scroll', this.handleScroll) // 监听页面滚动
  181. },
  182. methods: {
  183. getData() {
  184. that = this
  185. console.log(this.show_white);
  186. that.background = that.pageData.background
  187. setTimeout(() => {
  188. this.show_white = true
  189. }, 1000);
  190. },
  191. async fetchData() {
  192. const data = {
  193. level: 1,
  194. hot: 1,
  195. name: ''
  196. }
  197. try {
  198. getSlider(data).then((res) => {
  199. console.log(res)
  200. })
  201. } catch(error) {
  202. }
  203. },
  204. //监听屏幕大小实时给播放器设置宽高
  205. getVideoStyle() {
  206. window.onresize = () => {
  207. that.windowWidth = document.body.clientWidth
  208. that.windowHeight = document.body.clientHeight
  209. const windowAspectRatio = that.windowHeight / that.windowWidth
  210. // console.log(windowWidth, windowHeight, windowAspectRatio, '屏幕实时大小')
  211. let videoWidth
  212. let videoHeight
  213. if (windowAspectRatio < 0.5625) {
  214. videoWidth = that.windowWidth
  215. videoHeight = videoWidth * 0.5625
  216. this.fixStyle = {
  217. height: that.windowWidth * 0.5625 + 'px',
  218. width: that.windowWidth + 'px',
  219. 'margin-bottom': (that.windowHeight - videoHeight) / 2 + 'px',
  220. 'margin-left': 'initial'
  221. }
  222. } else {
  223. videoHeight = that.windowHeight
  224. videoWidth = videoHeight / 0.5625
  225. this.fixStyle = {
  226. height: that.windowHeight + 'px',
  227. width: that.windowHeight / 0.5625 + 'px',
  228. 'margin-left': (that.windowWidth - videoWidth) / 2 + 'px',
  229. 'margin-bottom': 'initial'
  230. }
  231. }
  232. }
  233. window.onresize()
  234. },
  235. toshow() {
  236. if(this.show) {
  237. this.$refs.floating_menu.style.display = 'none';
  238. this.show = false
  239. } else {
  240. this.$refs.floating_menu.style.display = 'block';
  241. this.show = true
  242. }
  243. },
  244. mouseOver() {
  245. this.over = true
  246. },
  247. mouseLeave() {
  248. this.over = false
  249. },
  250. toDetail(index) {
  251. if(index == '1') {
  252. that.$router.push('/product')
  253. } else if(index == '2') {
  254. that.$router.push('/news')
  255. } else if(index == '3') {
  256. that.$router.push('/trade')
  257. } else if(index == '4') {
  258. that.$router.push('/about')
  259. } else if(index == '5') {
  260. that.$router.push('/contact')
  261. }
  262. },
  263. handleScroll() {
  264. that = this
  265. this.scroll_top = document.documentElement.scrollTop
  266. const clientHeight = document.documentElement.clientHeight;
  267. },
  268. scorll_down(value) {
  269. console.log(value)
  270. document.documentElement.scrollTop = this.scroll_top + value
  271. this.scroll_top = document.documentElement.scrollTop
  272. },
  273. scorll_down2(index) {
  274. console.log(that.index)
  275. that.index = index
  276. if(that.index == 5) {
  277. document.querySelector('#videos').scrollIntoView({
  278. block: 'start',
  279. behavior: 'smooth'
  280. })
  281. return
  282. }
  283. if(that.index == -1) {
  284. that.index = 0
  285. }
  286. document.querySelector('#video' + that.index).scrollIntoView({
  287. block: 'start',
  288. behavior: 'smooth'
  289. })
  290. },
  291. jump(index) {
  292. that.index = index
  293. document.querySelector('#video' + that.index).scrollIntoView({
  294. block: 'start',
  295. behavior: 'smooth'
  296. })
  297. }
  298. }
  299. }
  300. </script>
  301. <style scoped>
  302. @import '../assets/css/common.css';
  303. @import '../assets/css/top.css';
  304. @import '../assets/css/index.css';
  305. </style>