index.html 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. <!--
  2. * @Descripttion:
  3. * @version:
  4. * @Author: 小六
  5. * @Date: 2021-12-20 17:27:10
  6. * @LastEditors: Andy
  7. * @LastEditTime: 2022-01-04 19:14:17
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <title>天翼数字乡村智慧大屏</title>
  16. </head>
  17. <body>
  18. <div class="wrap">
  19. <div class="wrap1">
  20. <div class="wrap2">
  21. <div class="gai1">
  22. <div class="gai2">
  23. <div class="btn_wrap">
  24. <div class="btn1">上一页</div>
  25. <div class="btn2">首页</div>
  26. <div class="btn3">下一页</div>
  27. <div class="btnAuto">自动播放版</div>
  28. <div class="btnClick">手动点击版</div>
  29. <div class="dianClose">关闭</div>
  30. </div>
  31. <div class="img">
  32. <div class="svg2">
  33. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  34. <defs>
  35. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  36. x2="100%" y2="0%" gradientTransform>
  37. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  38. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  39. </linearGradient>
  40. </defs>
  41. <path class="ce" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  42. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  43. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  44. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  45. stroke-dasharray='380,1140'></path>
  46. </svg>
  47. </div>
  48. <div class="svg3">
  49. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  50. <defs>
  51. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  52. x2="100%" y2="0%" gradientTransform>
  53. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  54. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  55. </linearGradient>
  56. </defs>
  57. <path class="ce3" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  58. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  59. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  60. stroke-miterlimit="4" fill-rule="nonzero" d="M 1520 0 L 0 0"
  61. stroke-dasharray='380,1520'></path>
  62. </svg>
  63. </div>
  64. <div class="svg4">
  65. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  66. <defs>
  67. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  68. x2="100%" y2="0%" gradientTransform>
  69. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  70. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  71. </linearGradient>
  72. </defs>
  73. <path class="ce4" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  74. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  75. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  76. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  77. stroke-dasharray='380,1140'></path>
  78. </svg>
  79. </div>
  80. <div class="svg5">
  81. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  82. <defs>
  83. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  84. x2="100%" y2="0%" gradientTransform>
  85. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  86. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  87. </linearGradient>
  88. </defs>
  89. <path class="ce5" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  90. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  91. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  92. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  93. stroke-dasharray='380,1140'></path>
  94. </svg>
  95. </div>
  96. <div class="svg6">
  97. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  98. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 29">
  99. <defs>
  100. <linearGradient id="hype-obj-HY73G23RH4XBI4VO7I1C_hype_grad"
  101. gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="0%"
  102. gradientTransform="">
  103. <stop offset="0%" stop-color="" stop-opacity="1"></stop>
  104. <stop offset="100%" stop-color="" stop-opacity="1"></stop>
  105. </linearGradient>
  106. </defs>
  107. <path class="arrow1" id="hype-obj-HY73G23RH4XBI4VO7I1C_path"
  108. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  109. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  110. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  111. </svg>
  112. </div>
  113. <div class="svg7">
  114. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  115. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 29">
  116. <defs>
  117. <linearGradient id="hype-obj-HY73G23RH4XBI4VO7I1C_hype_grad"
  118. gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="0%"
  119. gradientTransform="">
  120. <stop offset="0%" stop-color="" stop-opacity="1"></stop>
  121. <stop offset="100%" stop-color="" stop-opacity="1"></stop>
  122. </linearGradient>
  123. </defs>
  124. <path class="arrow2" id="hype-obj-HY73G23RH4XBI4VO7I1C_path"
  125. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  126. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  127. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  128. </svg>
  129. </div>
  130. <div class="svg8">
  131. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  132. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 29">
  133. <path class="arrow3" id="hype-obj-HY73G23RH4XBI4VO7I1C_path"
  134. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  135. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  136. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  137. </svg>
  138. </div>
  139. <div class="svg9" hype_scene_index="0"
  140. style="pointer-events: none; transform-origin: 50% 50%; transform: translateX(0px) translateY(0px); width: 18px; height: 29px; position: absolute; overflow: visible; z-index: 7;"
  141. aria-hidden="true"><svg width="100%" height="100%" style="position:absolute;"
  142. preserveAspectRatio="none" version="1.1" xmlns="http://www.w3.org/2000/svg"
  143. viewBox="0 0 18 29">
  144. <path class="arrow4" id="hype-obj-8WB64IF7YE8QCA6RE8ZS_path"
  145. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  146. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  147. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  148. </svg></div>
  149. <div class="svg10" hype_scene_index="0"
  150. style="pointer-events: none; transform-origin: 50% 50%; transform: translateX(14px) translateY(0px); width: 18px; height: 29px; position: absolute; overflow: visible; z-index: 8;">
  151. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  152. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 29">
  153. <path class="arrow5" id="hype-obj-OW0CEUUPF54ACEB8PLF5_path"
  154. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  155. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  156. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  157. </svg>
  158. </div>
  159. <div class="svg11" hype_scene_index="0"
  160. style="pointer-events: none; transform-origin: 50% 50%; transform: translateX(28px) translateY(0px); width: 18px; height: 29px; position: absolute; overflow: visible; z-index: 9;"
  161. aria-hidden="true"><svg width="100%" height="100%" style="position:absolute;"
  162. preserveAspectRatio="none" version="1.1" xmlns="http://www.w3.org/2000/svg"
  163. viewBox="0 0 18 29">
  164. <path class="arrow6" id="hype-obj-KI2LSISFUQYPOOZ0PZWU_path"
  165. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  166. stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="4"
  167. fill-rule="nonzero" d="M4.00 4.00 L 14.00 15.00 L 4.00 25.00"></path>
  168. </svg></div>
  169. <div class="top">
  170. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  171. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 787 76">
  172. <defs>
  173. <linearGradient id="hype-obj-CTSA3BM5AK40ES9011BG_hype_grad"
  174. gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="0%"
  175. gradientTransform="">
  176. <stop offset="0%" stop-color="" stop-opacity="1"></stop>
  177. <stop offset="100%" stop-color="" stop-opacity="0.1"></stop>
  178. </linearGradient>
  179. <pattern id="hype-obj-CTSA3BM5AK40ES9011BG_hype_pat"
  180. patternUnits="objectBoundingBox" width="1" height="1" viewBox="0 0 1 1"
  181. preserveAspectRatio="xMidYMid slice">
  182. <image xlink:href="" x="0" y="0" width="1" height="1"
  183. preserveAspectRatio="xMidYMid slice"></image>
  184. </pattern>
  185. </defs>
  186. <path class="top_svg" id="hype-obj-CTSA3BM5AK40ES9011BG_path"
  187. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  188. stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4"
  189. fill-rule="nonzero"
  190. d="M4.00 72.00 C 4.00 72.00, 693.00 72.00, 718.00 72.00 C 731.00 72.00, 742.00 67.00, 750.00 57.00 C 755.00 47.00, 786.00 1.50, 782.00 2.00"
  191. stroke-dasharray="813.09130859375,813.09130859375" stroke-dashoffset="814">
  192. </path>
  193. </svg>
  194. </div>
  195. <!-- 第一页视频 -->
  196. <div class="shan1"></div>
  197. <!-- video_shan1 -->
  198. <div class="HYPE_element_container_1"
  199. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 11; cursor: pointer;">
  200. <!-- <div class="video_wrap" style=" transform-origin: 50% 50%;pointer-events: auto;top: 780px; left: 1511px; width: 360px; height: 200px; position: absolute; overflow: visible; display: inline; z-index: 12;"> -->
  201. <video class="HYPE_element" id="first_video" hype_scene_index="0" muted loop autoplay
  202. style="pointer-events: auto; top: 775px; left: 1510px; width: 362px; height: 210px; position: absolute; overflow: visible; display: inline; z-index: 11; user-select: none;">
  203. <source src="./index.hyperesources/数字乡村总.mp4" type="video/mp4">
  204. </video>
  205. <!-- </div> -->
  206. </div>
  207. </div>
  208. <!-- 第二页 -->
  209. <div class="sec_wrap1">
  210. <div class="btns">
  211. <div class="btnOne" style="z-index: 11;">
  212. <div class="btnOne_wrap"
  213. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11;display: none;">
  214. <video class="top_video1" loop="" style="pointer-events: auto; " muted>
  215. <source src="./index.hyperesources/平安乡村.mp4" type="video/mp4">
  216. </video>
  217. </div>
  218. </div>
  219. <div class="btnTwo">
  220. <div class="btnTwo_wrap"
  221. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11;display: none;">
  222. <video class="top_video2" loop="" style="pointer-events: auto; " muted>
  223. <source src="./index.hyperesources/天翼云播.mp4" type="video/mp4">
  224. </video>
  225. </div>
  226. </div>
  227. <div class="btnThree">
  228. <div class="btnThree_wrap"
  229. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11;display: none;">
  230. <video class="top_video3" loop="" style="pointer-events: auto; " muted>
  231. <source src="./index.hyperesources/智慧大屏.mp4" type="video/mp4">
  232. </video>
  233. </div>
  234. </div>
  235. <div class="btnFour">
  236. <div class="btnFour_wrap"
  237. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11;display: none;">
  238. <video class="top_video4" loop="" style="pointer-events: auto; " muted>
  239. <source src="./index.hyperesources/智慧党建.mp4" type="video/mp4">
  240. </video>
  241. </div>
  242. </div>
  243. </div>
  244. <div class="svg2_sec">
  245. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  246. <defs>
  247. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  248. x2="100%" y2="0%" gradientTransform>
  249. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  250. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  251. </linearGradient>
  252. </defs>
  253. <path class="ce2_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  254. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  255. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  256. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  257. stroke-dasharray='380,1140'></path>
  258. </svg>
  259. </div>
  260. <div class="svg3_sec">
  261. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  262. <defs>
  263. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  264. x2="100%" y2="0%" gradientTransform>
  265. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  266. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  267. </linearGradient>
  268. </defs>
  269. <path class="ce3_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  270. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  271. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  272. stroke-miterlimit="4" fill-rule="nonzero" d="M 1520 0 L 0 0"
  273. stroke-dasharray='380,1520'></path>
  274. </svg>
  275. </div>
  276. <div class="svg4_sec">
  277. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  278. <defs>
  279. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  280. x2="100%" y2="0%" gradientTransform>
  281. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  282. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  283. </linearGradient>
  284. </defs>
  285. <path class="ce4_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  286. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  287. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  288. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  289. stroke-dasharray='380,1140'></path>
  290. </svg>
  291. </div>
  292. <div class="svg5_sec">
  293. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  294. <defs>
  295. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  296. x2="100%" y2="0%" gradientTransform>
  297. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  298. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  299. </linearGradient>
  300. </defs>
  301. <path class="ce5_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  302. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  303. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  304. stroke-miterlimit="4" fill-rule="nonzero" d="M 1140 0 L 0 0"
  305. stroke-dasharray='380,1140'></path>
  306. </svg>
  307. </div>
  308. <div class="svg6_sec">
  309. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  310. <defs>
  311. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  312. x2="100%" y2="0%" gradientTransform>
  313. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  314. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  315. </linearGradient>
  316. </defs>
  317. <path class="ce6_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  318. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  319. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  320. stroke-miterlimit="4" fill-rule="nonzero" d="M -390 0 L 1140 0"
  321. stroke-dasharray='380,1140'></path>
  322. </svg>
  323. </div>
  324. <div class="svg7_sec">
  325. <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
  326. <defs>
  327. <linearGradient gradientUnits="userSpaceOnUse" id="grad1" x1="0%" y1="0%"
  328. x2="100%" y2="0%" gradientTransform>
  329. <stop offset="0%" style="stop-color:#fc6150;stop-opacity:1" />
  330. <stop offset="100%" style="stop-color:#fd8c7e;stop-opacity:0.4" />
  331. </linearGradient>
  332. </defs>
  333. <path class="ce7_sec" id="hype-obj-EXLPM33FJDP3Q65MIAMI_path"
  334. pointer-events="visiblePainted" fill="url(#grad1)" stroke="#FF4632"
  335. stroke-width="6" stroke-linecap="round" stroke-linejoin="miter"
  336. stroke-miterlimit="4" fill-rule="nonzero" d="M -1800 0 L 1200 0"
  337. stroke-dasharray='800,1700'></path>
  338. </svg>
  339. </div>
  340. <div class="top_sec">
  341. <svg width="100%" height="100%" style="position:absolute;" preserveAspectRatio="none"
  342. version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 601 76">
  343. <defs>
  344. <linearGradient id="hype-obj-N61KXJHMH4Q16M4IWEG4_hype_grad"
  345. gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="0%"
  346. gradientTransform="">
  347. <stop offset="0%" stop-color="" stop-opacity="1"></stop>
  348. <stop offset="100%" stop-color="" stop-opacity="1"></stop>
  349. </linearGradient>
  350. <pattern id="hype-obj-N61KXJHMH4Q16M4IWEG4_hype_pat"
  351. patternUnits="objectBoundingBox" width="1" height="1" viewBox="0 0 1 1"
  352. preserveAspectRatio="xMidYMid slice">
  353. <image xlink:href="" x="0" y="0" width="1" height="1"
  354. preserveAspectRatio="xMidYMid slice"></image>
  355. </pattern>
  356. </defs>
  357. <path class="top_svg_sec" id="hype-obj-N61KXJHMH4Q16M4IWEG4_path"
  358. pointer-events="visiblePainted" fill="none" stroke="#FFF" stroke-width="4"
  359. stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4"
  360. fill-rule="nonzero"
  361. d="M4.00 72.00 C 4.00 72.00, 507.00 72.00, 532.00 72.00 C 545.00 72.00, 556.00 67.00, 564.00 57.00 C 572.00 47.00, 599.00 1.50, 597.00 2.00"
  362. stroke-dasharray="627.09130859375,627.09130859375"
  363. stroke-dashoffset="-627.09130859375"></path>
  364. </svg>
  365. </div>
  366. <!-- 第二页左上角视频 -->
  367. <div class=" shan2" style=" "></div>
  368. <div class="sec_left1_f"
  369. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 12; cursor: pointer;">
  370. <video class="sec_left1" id="hype-obj-R2QCA3L3YARHMG2PCT8F" hype_scene_index="10"
  371. loop=""
  372. style="pointer-events: auto; top: 130px; left: 61px; width: 380px; height: 215px; position: absolute; overflow: visible; display: inline; z-index: 12;"
  373. autoplay="" muted>
  374. <source src="./index.hyperesources/P6-V1.0-美丽乡村虹光村.mp4" type="video/mp4">
  375. </video>
  376. </div>
  377. <!-- 第二页左下角视频 -->
  378. <div class=" shan3" style=" "></div>
  379. <div class="sec_left2_f"
  380. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 11; cursor: pointer;">
  381. <video class="sec_left2" id="hype-obj-1WQQFLZ20VFO17SPMXBI" hype_scene_index="10"
  382. loop=""
  383. style="pointer-events: auto; top: 524px; left: 60px; width: 380px; height: 210px; position: absolute; overflow: visible; z-index: 11;"
  384. autoplay="" muted>
  385. <source src="./index.hyperesources/P4-V2.0-增城垃圾分类.mp4" type="video/mp4">
  386. </video>
  387. </div>
  388. <!-- 第二页中间视频 -->
  389. <div class=" sec_left3_zhan"
  390. style=" position: absolute; transform-origin: 50% 50%; transform: translateX(480px) translateY(86px); width: 956px; height: 710px;cursor: pointer; z-index:11; ">
  391. </div>
  392. <div class="sec_left3_f"
  393. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 11; display: none; ">
  394. <video class="sec_left3" id="hype-obj-1WQQFLZ20VFO17SPMXBI" hype_scene_index="10"
  395. loop="" style="pointer-events: auto; " muted>
  396. <source src="./index.hyperesources/P7-V2.0-电子地图.mp4" type="video/mp4">
  397. </video>
  398. </div>
  399. <!-- 第二页右上角视频 -->
  400. <div class="sec_left6_zhan"
  401. style="transform-origin: 50% 50%; transform: translateX(1449px) translateY(88px); width: 440px; height: 160px; position: absolute;cursor: pointer; z-index:11; ">
  402. </div>
  403. <div class="sec_left6_f"
  404. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11; display: none;">
  405. <video class="sec_left6" id="hype-obj-1WQQFLZ20VFO17SPMXBI" hype_scene_index="10"
  406. loop="" style="pointer-events: auto; " muted preload="none">
  407. <source src="./index.hyperesources/智慧党建.mp4" type="video/mp4">
  408. </video>
  409. </div>
  410. <!-- 第二页右中视频 -->
  411. <div class=" sec_left4_zhan"
  412. style=" transform-origin: 50% 50%; transform: translateX(1452px) translateY(264px); width: 435px; height: 432px; position: absolute;cursor: pointer; z-index:11; ">
  413. </div>
  414. <div class="sec_left4_f"
  415. style="position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 11; display: none;">
  416. <video class="sec_left4" id="hype-obj-1WQQFLZ20VFO17SPMXBI" hype_scene_index="10"
  417. loop="" style="pointer-events: auto; " muted>
  418. <source src="./index.hyperesources/P8-V1.0-AI-K740A.mp4" type="video/mp4">
  419. </video>
  420. </div>
  421. <!-- 第二页右下角视频 -->
  422. <div class=" sec_left5_zhan"
  423. style="transform-origin: 50% 50%; transform: translateX(1452px) translateY(710px); width: 435px; height: 320px; position: absolute; cursor: pointer; z-index:11; ">
  424. </div>
  425. <div class="sec_left5_f"
  426. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; pointer-events: none; z-index: 11; display: none;">
  427. <video class="sec_left5" id="hype-obj-1WQQFLZ20VFO17SPMXBI" hype_scene_index="10"
  428. loop="" style="pointer-events: auto; " muted>
  429. <source src="./index.hyperesources/P9-V2.0-云广播.mp4" type="video/mp4">
  430. </video>
  431. </div>
  432. </div>
  433. </div>
  434. </div>
  435. </div>
  436. </div>
  437. </div>
  438. <style>
  439. html {
  440. height: 100%;
  441. }
  442. body {
  443. height: 100%;
  444. background-color: #000;
  445. margin: 0;
  446. }
  447. svg {
  448. position: absolute;
  449. z-index: 2;
  450. width: 100%;
  451. height: 100%;
  452. }
  453. .btn_wrap {
  454. position: absolute;
  455. width: 100%;
  456. height: 100%;
  457. }
  458. /* 自动播放按钮 */
  459. .btnAuto {
  460. pointer-events: auto;
  461. transform-origin: 50% 50%;
  462. transform: translateX(1600px) translateY(1010px);
  463. width: 128px;
  464. height: 28px;
  465. position: absolute;
  466. z-index: 13;
  467. border-style: none;
  468. padding: 6px;
  469. border-width: 0px;
  470. user-select: none;
  471. background-color: rgba(0, 0, 0, 0.5);
  472. border-radius: 6px;
  473. box-shadow: rgb(128 128 128) 0px 0px 3px;
  474. border-color: rgb(160, 160, 160);
  475. display: inline;
  476. overflow-wrap: break-word;
  477. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  478. font-size: 18px;
  479. text-align: center;
  480. font-weight: bold;
  481. color: rgb(255, 255, 255);
  482. cursor: auto;
  483. overflow: visible;
  484. }
  485. .btnAuto:hover {
  486. cursor: pointer;
  487. color: rgb(255, 70, 50)
  488. }
  489. /* 上一页按钮 */
  490. .btn1 {
  491. pointer-events: auto;
  492. transform-origin: 50% 50%;
  493. transform: translateX(1667px) translateY(1010px);
  494. width: 88px;
  495. height: 28px;
  496. position: absolute;
  497. z-index: 999;
  498. border-style: none;
  499. padding: 6px;
  500. border-width: 0px;
  501. user-select: none;
  502. background-color: rgba(0, 0, 0, 0.5);
  503. border-radius: 6px;
  504. box-shadow: rgb(128 128 128) 0px 0px 3px;
  505. border-color: rgb(160, 160, 160);
  506. display: none;
  507. overflow-wrap: break-word;
  508. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  509. font-size: 18px;
  510. text-align: center;
  511. font-weight: bold;
  512. color: rgb(255, 255, 255);
  513. cursor: auto;
  514. overflow: visible;
  515. }
  516. .btn1:hover {
  517. cursor: pointer;
  518. color: rgb(255, 70, 50)
  519. }
  520. /* 首页按钮 */
  521. .btn2 {
  522. pointer-events: auto;
  523. transform-origin: 50% 50%;
  524. transform: translateX(1780px) translateY(1010px);
  525. width: 88px;
  526. height: 28px;
  527. position: absolute;
  528. z-index: 999;
  529. border-style: none;
  530. padding: 6px;
  531. border-width: 0px;
  532. user-select: none;
  533. background-color: rgba(0, 0, 0, 0.506);
  534. border-radius: 6px;
  535. box-shadow: rgb(128 128 128) 0px 0px 3px;
  536. border-color: rgb(160, 160, 160);
  537. display: none;
  538. overflow-wrap: break-word;
  539. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  540. font-size: 18px;
  541. text-align: center;
  542. font-weight: bold;
  543. color: rgb(255, 255, 255);
  544. /* cursor: auto; */
  545. overflow: visible;
  546. }
  547. .btn2:hover {
  548. cursor: pointer;
  549. color: rgb(255, 70, 50)
  550. }
  551. .btn3 {
  552. pointer-events: auto;
  553. transform-origin: 50% 50%;
  554. transform: translateX(1780px) translateY(1010px);
  555. width: 88px;
  556. height: 28px;
  557. position: absolute;
  558. z-index: 999;
  559. border-style: none;
  560. padding: 6px;
  561. border-width: 0px;
  562. user-select: none;
  563. background-color: rgba(0, 0, 0, 0.506);
  564. border-radius: 6px;
  565. box-shadow: rgb(128 128 128) 0px 0px 3px;
  566. border-color: rgb(160, 160, 160);
  567. display: inline;
  568. overflow-wrap: break-word;
  569. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  570. font-size: 18px;
  571. text-align: center;
  572. font-weight: bold;
  573. color: rgb(255, 255, 255);
  574. /* cursor: auto; */
  575. overflow: visible;
  576. }
  577. .btn3:hover {
  578. cursor: pointer;
  579. color: rgb(255, 70, 50)
  580. }
  581. .btnClick {
  582. pointer-events: auto;
  583. transform-origin: 50% 50%;
  584. transform: translateX(1730px) translateY(1010px);
  585. width: 128px;
  586. height: 28px;
  587. position: absolute;
  588. z-index: 13;
  589. border-style: none;
  590. padding: 6px;
  591. border-width: 0px;
  592. user-select: none;
  593. background-color: rgba(0, 0, 0, 0.5);
  594. border-radius: 6px;
  595. box-shadow: rgb(128 128 128) 0px 0px 3px;
  596. border-color: rgb(160, 160, 160);
  597. display: none;
  598. overflow-wrap: break-word;
  599. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  600. font-size: 18px;
  601. text-align: center;
  602. font-weight: bold;
  603. color: rgb(255, 255, 255);
  604. cursor: auto;
  605. overflow: visible;
  606. }
  607. .btnClick:hover {
  608. cursor: pointer;
  609. color: rgb(255, 70, 50)
  610. }
  611. /* 关闭视频按钮 */
  612. .dianClose {
  613. pointer-events: auto;
  614. transform-origin: 50% 50%;
  615. transform: translateX(1780px) translateY(1087px);
  616. width: 88px;
  617. height: 28px;
  618. position: absolute;
  619. z-index: 9999;
  620. border-style: none;
  621. padding: 6px;
  622. border-width: 0px;
  623. user-select: none;
  624. background-color: rgba(0, 0, 0, 0.5);
  625. border-radius: 6px;
  626. box-shadow: rgb(128 128 128) 0px 0px 3px;
  627. border-color: rgb(160, 160, 160);
  628. display: none;
  629. overflow-wrap: break-word;
  630. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  631. font-size: 18px;
  632. text-align: center;
  633. font-weight: bold;
  634. color: rgb(255, 255, 255);
  635. cursor: pointer;
  636. overflow: visible;
  637. }
  638. .dianClose:hover {
  639. cursor: pointer;
  640. color: rgb(255, 70, 50)
  641. }
  642. .ce,
  643. .ce4,
  644. .ce3,
  645. .ce5 {
  646. position: absolute;
  647. stroke-dashoffset: 375px;
  648. /* transition: all 2s; */
  649. animation-name: path-animation;
  650. animation-duration: 5s;
  651. animation-iteration-count: infinite;
  652. /* animation-timing-function: ease-in; */
  653. animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1);
  654. z-index: 2;
  655. }
  656. @keyframes path-animation {
  657. 0% {
  658. stroke-dashoffset: 1520px;
  659. opacity: 1;
  660. }
  661. 25% {
  662. stroke-dashoffset: 1520px;
  663. opacity: 0.9;
  664. }
  665. 50% {
  666. stroke-dashoffset: 1520px;
  667. opacity: 0.5;
  668. }
  669. 75% {
  670. stroke-dashoffset: 1520px;
  671. opacity: 0.5;
  672. }
  673. 100% {
  674. stroke-dashoffset: 0;
  675. opacity: 0.2;
  676. }
  677. }
  678. .arrow {
  679. stroke-dashoffset: 40px;
  680. animation-name: path-animation_arrow;
  681. animation-duration: 2s;
  682. animation-iteration-count: infinite;
  683. animation-timing-function: ease-in;
  684. /* animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1); */
  685. z-index: 2;
  686. }
  687. @keyframes path-animation_arrow {
  688. from {
  689. stroke-dashoffset: 40px;
  690. opacity: 1;
  691. }
  692. to {
  693. stroke-dashoffset: 0;
  694. opacity: 0;
  695. }
  696. }
  697. .arrow1,
  698. .arrow4 {
  699. stroke-dashoffset: 40px;
  700. animation-name: path-animation_arrow;
  701. animation-duration: 5s;
  702. animation-iteration-count: infinite;
  703. animation-timing-function: ease-in;
  704. animation-delay: 0s;
  705. /* animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1); */
  706. z-index: 2;
  707. }
  708. @keyframes path-animation_arrow {
  709. 0% {
  710. stroke-dashoffset: 400px;
  711. opacity: 1;
  712. }
  713. 20% {
  714. stroke-dashoffset: 0;
  715. opacity: 0;
  716. }
  717. 100% {
  718. stroke-dashoffset: 0;
  719. opacity: 0;
  720. }
  721. }
  722. .arrow2,
  723. .arrow5 {
  724. stroke-dashoffset: 30px;
  725. animation-name: path-animation_arrow;
  726. animation-duration: 5s;
  727. animation-iteration-count: infinite;
  728. animation-timing-function: ease-in;
  729. /* animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1); */
  730. z-index: 2;
  731. }
  732. @keyframes path-animation_arrow {
  733. 0% {
  734. stroke-dashoffset: 40px;
  735. opacity: 1;
  736. }
  737. 20% {
  738. stroke-dashoffset: 0;
  739. opacity: 0;
  740. }
  741. 100% {
  742. stroke-dashoffset: 0;
  743. opacity: 0;
  744. }
  745. }
  746. .arrow3,
  747. .arrow6 {
  748. stroke-dashoffset: 20px;
  749. animation-name: path-animation_arrow;
  750. animation-duration: 5s;
  751. animation-iteration-count: infinite;
  752. animation-timing-function: ease-in;
  753. animation-delay: 0.4s;
  754. /* animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1); */
  755. z-index: 2;
  756. }
  757. @keyframes path-animation_arrow {
  758. 0% {
  759. stroke-dashoffset: 20px;
  760. opacity: 1;
  761. }
  762. 20% {
  763. stroke-dashoffset: 0;
  764. opacity: 0;
  765. }
  766. 100% {
  767. stroke-dashoffset: 0;
  768. opacity: 0;
  769. }
  770. }
  771. .top_svg {
  772. stroke-dashoffset: 40px;
  773. animation-name: path-animation1;
  774. animation-duration: 2s;
  775. animation-iteration-count: infinite;
  776. /* animation-timing-function: ease-in; */
  777. animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1);
  778. z-index: 2;
  779. }
  780. @keyframes path-animation1 {
  781. from {
  782. stroke-dashoffset: 1628px;
  783. opacity: 1;
  784. }
  785. to {
  786. stroke-dashoffset: 0;
  787. opacity: 0.7;
  788. }
  789. }
  790. .top_svg_sec {
  791. stroke-dashoffset: 40px;
  792. animation-name: path-animation1;
  793. animation-duration: 2s;
  794. animation-iteration-count: infinite;
  795. /* animation-timing-function: ease-in; */
  796. animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1);
  797. z-index: 2;
  798. }
  799. @keyframes path-animation1 {
  800. from {
  801. stroke-dashoffset: 1254px;
  802. opacity: 1;
  803. }
  804. to {
  805. stroke-dashoffset: 0;
  806. opacity: 0.7;
  807. }
  808. }
  809. .wrap {
  810. margin: auto;
  811. position: relative;
  812. width: 100%;
  813. height: 100%;
  814. overflow: hidden;
  815. /* transform-origin: 50% 50%; */
  816. }
  817. .wrap1 {
  818. display: block;
  819. position: absolute;
  820. width: 100%;
  821. height: 100%;
  822. overflow: hidden;
  823. top: 0;
  824. left: 0;
  825. transform-origin: 50% 50%;
  826. /* display: none; */
  827. }
  828. .wrap2 {
  829. position: absolute;
  830. width: 100%;
  831. height: 100%;
  832. top: 0;
  833. left: 0;
  834. }
  835. .gai1 {
  836. position: absolute;
  837. /* width: 1920px;
  838. height: 1080px; */
  839. overflow: visible;
  840. transform-origin: 50% 50%;
  841. }
  842. .gai2 {
  843. width: 100%;
  844. height: 100%;
  845. position: absolute;
  846. top: 0;
  847. left: 0;
  848. }
  849. .img {
  850. transform-origin: 50% 50%;
  851. width: 1920px;
  852. height: 1080px;
  853. position: absolute;
  854. background-image: url(./first.jpg);
  855. background-repeat: no-repeat;
  856. /* background-position: center; */
  857. background-size: 100% 100%;
  858. overflow: visible;
  859. transform: translateX(0px) translateY(0px);
  860. display: inline;
  861. }
  862. .svg2 {
  863. position: absolute;
  864. width: 380px;
  865. height: 10px;
  866. top: 200px;
  867. left: 40px;
  868. }
  869. .svg3 {
  870. position: absolute;
  871. width: 380px;
  872. height: 10px;
  873. top: 200px;
  874. right: 40px;
  875. }
  876. .svg4 {
  877. position: absolute;
  878. width: 380px;
  879. height: 10px;
  880. top: 760px;
  881. right: 40px;
  882. }
  883. .svg5 {
  884. position: absolute;
  885. width: 380px;
  886. height: 10px;
  887. top: 640px;
  888. left: 40px;
  889. }
  890. .svg6 {
  891. position: absolute;
  892. width: 18px;
  893. height: 29px;
  894. top: 121px;
  895. left: 426px;
  896. }
  897. .svg7 {
  898. position: absolute;
  899. width: 18px;
  900. height: 29px;
  901. top: 121px;
  902. left: 440px;
  903. }
  904. .svg8 {
  905. position: absolute;
  906. width: 18px;
  907. height: 29px;
  908. top: 121px;
  909. left: 454px;
  910. }
  911. .svg9 {
  912. position: absolute;
  913. width: 18px;
  914. height: 29px;
  915. top: 121px;
  916. left: 1446px;
  917. }
  918. .svg10 {
  919. position: absolute;
  920. width: 18px;
  921. height: 29px;
  922. top: 121px;
  923. left: 1447px;
  924. }
  925. .svg11 {
  926. position: absolute;
  927. width: 18px;
  928. height: 29px;
  929. top: 121px;
  930. left: 1448px;
  931. }
  932. .top {
  933. position: absolute;
  934. width: 787px;
  935. height: 74px;
  936. top: 0px;
  937. left: 598px;
  938. }
  939. .top_sec {
  940. position: absolute;
  941. width: 600px;
  942. height: 76px;
  943. top: 0px;
  944. left: 685px;
  945. }
  946. /* 第二屏 */
  947. .sec_wrap1 {
  948. /* opacity: 0; */
  949. display: none;
  950. transform-origin: 50% 50%;
  951. width: 1920px;
  952. height: 1080px;
  953. position: absolute;
  954. background-image: url(./second.jpg);
  955. background-repeat: no-repeat;
  956. /* background-position: center; */
  957. background-size: 100% 100%;
  958. overflow: visible;
  959. transform: translateX(0px) translateY(0px);
  960. /* transition: 2s; */
  961. transition-duration: 1.5s;
  962. }
  963. .ce2_sec,
  964. .ce4_sec,
  965. .ce3_sec,
  966. .ce5_sec,
  967. .ce6_sec {
  968. position: absolute;
  969. stroke-dashoffset: 350px;
  970. /* transition: all 2s; */
  971. animation-name: path-animation;
  972. animation-duration: 5s;
  973. animation-iteration-count: infinite;
  974. /* animation-timing-function: ease-in; */
  975. animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1);
  976. z-index: 2;
  977. }
  978. @keyframes path-animation {
  979. 0% {
  980. stroke-dashoffset: 1520px;
  981. opacity: 1;
  982. }
  983. 25% {
  984. stroke-dashoffset: 1520px;
  985. opacity: 0.9;
  986. }
  987. 50% {
  988. stroke-dashoffset: 1520px;
  989. opacity: 0.5;
  990. }
  991. 75% {
  992. stroke-dashoffset: 1520px;
  993. opacity: 0.5;
  994. }
  995. 100% {
  996. stroke-dashoffset: 0;
  997. opacity: 0.2;
  998. }
  999. }
  1000. .ce7_sec {
  1001. position: absolute;
  1002. stroke-dashoffset: 800px;
  1003. animation-name: path-animation;
  1004. animation-duration: 5s;
  1005. animation-iteration-count: infinite;
  1006. /* animation-timing-function: ease-in; */
  1007. animation-timing-function: cubic-bezier(0.075, 0.35, 0.85, 1);
  1008. z-index: 2;
  1009. }
  1010. @keyframes path-animation {
  1011. 0% {
  1012. stroke-dashoffset: 1520px;
  1013. opacity: 1;
  1014. }
  1015. 25% {
  1016. stroke-dashoffset: 1520px;
  1017. opacity: 0.9;
  1018. }
  1019. 50% {
  1020. stroke-dashoffset: 1520px;
  1021. opacity: 0.5;
  1022. }
  1023. 75% {
  1024. stroke-dashoffset: 1520px;
  1025. opacity: 0.5;
  1026. }
  1027. 100% {
  1028. stroke-dashoffset: 0;
  1029. opacity: 0.2;
  1030. }
  1031. }
  1032. .svg2_sec {
  1033. position: absolute;
  1034. width: 350px;
  1035. height: 10px;
  1036. top: 85px;
  1037. left: 125px;
  1038. }
  1039. .svg3_sec {
  1040. position: absolute;
  1041. width: 350px;
  1042. height: 10px;
  1043. top: 480px;
  1044. left: 125px;
  1045. }
  1046. .svg4_sec {
  1047. position: absolute;
  1048. width: 350px;
  1049. height: 10px;
  1050. top: 868px;
  1051. left: 125px;
  1052. }
  1053. .svg5_sec {
  1054. position: absolute;
  1055. width: 350px;
  1056. height: 10px;
  1057. top: 710px;
  1058. right: 30px;
  1059. }
  1060. .svg6_sec {
  1061. position: absolute;
  1062. width: 330px;
  1063. height: 10px;
  1064. top: 260px;
  1065. right: 30px;
  1066. }
  1067. .svg7_sec {
  1068. position: absolute;
  1069. width: 800px;
  1070. height: 10px;
  1071. top: 810px;
  1072. left: 640px;
  1073. }
  1074. /* 边框闪烁 */
  1075. .video_shan1 {
  1076. box-sizing: border-box;
  1077. top: 760px;
  1078. left: 1501px;
  1079. width: 375px;
  1080. height: 230px;
  1081. position: absolute;
  1082. overflow: visible;
  1083. display: inline;
  1084. z-index: 11;
  1085. animation-name: shan1;
  1086. animation-duration: 2s;
  1087. animation-iteration-count: infinite;
  1088. }
  1089. .video_shan2 {
  1090. box-sizing: border-box;
  1091. top: 89px;
  1092. left: 30px;
  1093. width: 445px;
  1094. height: 380px;
  1095. position: absolute;
  1096. overflow: visible;
  1097. display: inline;
  1098. z-index: 11;
  1099. animation-name: shan1;
  1100. animation-duration: 2s;
  1101. animation-iteration-count: infinite;
  1102. }
  1103. .video_shan3 {
  1104. box-sizing: border-box;
  1105. top: 480px;
  1106. left: 30px;
  1107. width: 445px;
  1108. height: 380px;
  1109. position: absolute;
  1110. overflow: visible;
  1111. display: inline;
  1112. z-index: 11;
  1113. animation-name: shan1;
  1114. animation-duration: 2s;
  1115. animation-iteration-count: infinite;
  1116. }
  1117. .video_shan4 {
  1118. box-sizing: border-box;
  1119. animation-name: shan1;
  1120. animation-duration: 2s;
  1121. animation-iteration-count: infinite;
  1122. }
  1123. .video_shan5 {
  1124. box-sizing: border-box;
  1125. animation-name: shan1;
  1126. animation-duration: 2s;
  1127. animation-iteration-count: infinite;
  1128. }
  1129. .video_shan6 {
  1130. box-sizing: border-box;
  1131. animation-name: shan1;
  1132. animation-duration: 2s;
  1133. animation-iteration-count: infinite;
  1134. }
  1135. @-webkit-keyframes shan1 {
  1136. from {
  1137. border: 5px solid #e74233;
  1138. /* background-color: #749a02; */
  1139. -webkit-box-shadow: 0 0 19px #d13326;
  1140. }
  1141. 20% {
  1142. border: 5px solid #eb7065;
  1143. /* background-color: #749a02; */
  1144. -webkit-box-shadow: 0 0 19px #e96054;
  1145. }
  1146. 50% {
  1147. /* border: none; */
  1148. border: 5px solid #fddddd;
  1149. /* background-color: #749a02; */
  1150. -webkit-box-shadow: 0 0 19px #e96054;
  1151. }
  1152. 70% {
  1153. border: 5px solid #eb7065;
  1154. /* background-color: #749a02; */
  1155. -webkit-box-shadow: 0 0 19px #e96054;
  1156. }
  1157. to {
  1158. border: 5px solid #e74839;
  1159. /* background-color: #749a02; */
  1160. -webkit-box-shadow: 0 0 19px #d13326;
  1161. }
  1162. }
  1163. /* 四个定位按钮 */
  1164. .btnOne {
  1165. width: 120px;
  1166. height: 30px;
  1167. /* border: 1px solid yellow; */
  1168. border-radius: 10px;
  1169. position: absolute;
  1170. top: 12px;
  1171. left: 363px;
  1172. cursor: pointer;
  1173. }
  1174. .btnTwo {
  1175. width: 120px;
  1176. height: 30px;
  1177. /* border: 1px solid yellow; */
  1178. border-radius: 10px;
  1179. position: absolute;
  1180. top: 12px;
  1181. left: 500px;
  1182. cursor: pointer;
  1183. }
  1184. .btnThree {
  1185. width: 600px;
  1186. height: 70px;
  1187. /* border: 1px solid yellow; */
  1188. border-radius: 10px 10px 30px 30px;
  1189. position: absolute;
  1190. left: 660px;
  1191. z-index: 12;
  1192. cursor: pointer;
  1193. }
  1194. .btnFour {
  1195. width: 120px;
  1196. height: 30px;
  1197. /* border: 1px solid yellow; */
  1198. border-radius: 10px;
  1199. position: absolute;
  1200. top: 12px;
  1201. left: 1300px;
  1202. cursor: pointer;
  1203. }
  1204. .btnOne_shan {
  1205. box-sizing: border-box;
  1206. animation-name: shan2;
  1207. animation-duration: 2s;
  1208. animation-iteration-count: infinite;
  1209. }
  1210. .btnTwo_shan {
  1211. box-sizing: border-box;
  1212. animation-name: shan2;
  1213. animation-duration: 2s;
  1214. animation-iteration-count: infinite;
  1215. }
  1216. .btnThree_shan {
  1217. box-sizing: border-box;
  1218. animation-name: shan1;
  1219. animation-duration: 2s;
  1220. animation-iteration-count: infinite;
  1221. }
  1222. .btnFour_shan {
  1223. box-sizing: border-box;
  1224. animation-name: shan2;
  1225. animation-duration: 2s;
  1226. animation-iteration-count: infinite;
  1227. }
  1228. @-webkit-keyframes shan2 {
  1229. from {
  1230. border: 5px solid #fcdd69;
  1231. /* background-color: #749a02; */
  1232. -webkit-box-shadow: 0 0 19px #fcdd69;
  1233. }
  1234. 20% {
  1235. border: 5px solid #f8e08a;
  1236. /* background-color: #749a02; */
  1237. -webkit-box-shadow: 0 0 19px #fcdd69;
  1238. }
  1239. 50% {
  1240. /* border: none; */
  1241. border: 5px solid #d13326;
  1242. /* background-color: #749a02; */
  1243. -webkit-box-shadow: 0 0 19px #eb7065;
  1244. }
  1245. 70% {
  1246. border: 5px solid #f8e08a;
  1247. /* background-color: #749a02; */
  1248. -webkit-box-shadow: 0 0 19px #fcdd69;
  1249. }
  1250. to {
  1251. border: 5px solid #fcdd69;
  1252. /* background-color: #749a02; */
  1253. -webkit-box-shadow: 0 0 19px #fcdd69;
  1254. }
  1255. }
  1256. </style>
  1257. <script src="./jquery-3.6.0.min.js"></script>
  1258. <script type="text/javascript">
  1259. var gai1 = document.getElementsByClassName('gai1')[0]
  1260. var scriptList = document.getElementsByTagName("script")
  1261. setTimeout(() => {
  1262. // document.getElementsByClassName('wrap2')[0].removeChild(gai1)
  1263. // console.log(scriptList, '111')
  1264. // for (var script of scriptList) {
  1265. // script.parentNode.removeChild(script)
  1266. // }
  1267. // console.log(scriptList, '222')
  1268. console.log(scriptList, '222')
  1269. }, 5000)
  1270. var imgDom = $(".gai1");//获取图片
  1271. var winDom = $(window);//获取窗口
  1272. var winwHeight = winDom.height();//获取窗口高度
  1273. var winwWidth = winDom.width();//获取窗口宽度
  1274. var x = winwWidth / 1920
  1275. var y = winwHeight / 1080
  1276. var scale
  1277. if (x > y) {
  1278. scale = y
  1279. } else {
  1280. scale = x
  1281. }
  1282. var x1 = (winwWidth - 1920) / 2
  1283. var y1 = (winwHeight - 1080) / 2
  1284. console.log(x1, y1, '22222')
  1285. // imgDom.css('transform', 'scale(' + scale + ',' + scale + ') translateX(' + x1 + 'px) translateY(' + y1 + 'px)')
  1286. imgDom.css('transform', 'scaleX(' + scale + ') scaleY(' + scale + ') translateX(' + x1 + 'px) translateY(' + y1 + 'px)')
  1287. imgDom.css('width', winwWidth)
  1288. imgDom.css('height', winwHeight)
  1289. //使用resize()
  1290. winDom.resize(function () {
  1291. var imgDom = $(".gai1");//获取图片
  1292. var winDom = $(window);//获取窗口
  1293. var winwHeight = winDom.height();//获取窗口高度
  1294. var winwWidth = winDom.width();//获取窗口宽度
  1295. var x = winwWidth / 1920
  1296. var y = winwHeight / 1080
  1297. var scale
  1298. if (x > y) {
  1299. scale = y
  1300. } else {
  1301. scale = x
  1302. }
  1303. var x1 = (winwWidth - 1920) / 2
  1304. var y1 = (winwHeight - 1080) / 2
  1305. console.log(x1, y1, '22222')
  1306. // imgDom.css('transform', 'scale(' + scale + ',' + scale + ') translateX(' + x1 + 'px) translateY(' + y1 + 'px)')
  1307. imgDom.css('transform', 'scaleX(' + scale + ') scaleY(' + scale + ') translateX(' + x1 + 'px) translateY(' + y1 + 'px)')
  1308. imgDom.css('width', winwWidth)
  1309. imgDom.css('height', winwHeight)
  1310. });
  1311. var video_wrap = document.getElementsByClassName('video_wrap')[0]
  1312. var video1 = document.getElementById('first_video')
  1313. var videos = document.getElementsByClassName('btnAuto')[0]
  1314. var closes = document.getElementsByClassName('dianClose')[0]
  1315. var video_f = document.getElementsByClassName('HYPE_element_container_1')[0]
  1316. // video1.play()
  1317. // $('#first_video').play()
  1318. var isloop = false
  1319. // 点击第一页播放视频
  1320. var first_video_time
  1321. var fang_click = false
  1322. var videoOne = video1.onclick = function () {
  1323. if (fang_click) {
  1324. return
  1325. }
  1326. if(isloop){
  1327. video1.controls = false
  1328. }else{
  1329. video1.controls = true
  1330. }
  1331. video1.play()
  1332. video1.muted = false
  1333. video1.currentTime = 0
  1334. fang_click = true
  1335. console.log('www')
  1336. video1.style.width = '1920px'
  1337. video1.style.height = '1080px'
  1338. video1.style.top = 0
  1339. video1.style.left = 0
  1340. first_video_time = video1.duration
  1341. console.log(first_video_time, 'first_video_time')
  1342. $('.btn1').css('display', 'none')
  1343. $('.btn2').css('display', 'none')
  1344. $('.btn3').css('display', 'none')
  1345. $('.btnAuto').css('display', 'none')
  1346. if (!isloop) {
  1347. $('.dianClose').css('display', 'inline')
  1348. }
  1349. $('.img').css('background-image', 'none')
  1350. }
  1351. // 点击第二页左上角视频
  1352. var sec_left1_f = document.getElementsByClassName('sec_left1_f')[0]
  1353. var sec_left1 = document.getElementsByClassName('sec_left1')[0]
  1354. var second_video_time
  1355. var videoTwo = sec_left1.onclick = function () {
  1356. console.log(111)
  1357. if (fang_click) {
  1358. return
  1359. }
  1360. if(isloop){
  1361. sec_left1.controls = false
  1362. }else{
  1363. sec_left1.controls = true
  1364. }
  1365. fang_click = true
  1366. console.log(111)
  1367. sec_left1.play()
  1368. sec_left1.currentTime = 0
  1369. sec_left1.muted = false
  1370. sec_left1.style.width = '100%'
  1371. sec_left1.style.height = '100%'
  1372. sec_left1.style.top = 0
  1373. sec_left1.style.left = 0
  1374. second_video_time = sec_left1.duration
  1375. $('.btn1').css('display', 'none')
  1376. $('.btn2').css('display', 'none')
  1377. $('.btn3').css('display', 'none')
  1378. if (!isloop) {
  1379. $('.dianClose').css('display', 'inline')
  1380. }
  1381. $('.img').css('background-image', 'none')
  1382. $('.sec_wrap1').css('background-image', 'none')
  1383. }
  1384. // 点击第二页左下角视频
  1385. var sec_left2_f = document.getElementsByClassName('sec_left2_f')[0]
  1386. var sec_left2 = document.getElementsByClassName('sec_left2')[0]
  1387. var three_video_time
  1388. var videoThree = sec_left2.onclick = function () {
  1389. console.log(111)
  1390. if (fang_click) {
  1391. return
  1392. }
  1393. fang_click = true
  1394. sec_left2.play()
  1395. sec_left2.currentTime = 0
  1396. sec_left2.muted = false
  1397. if(isloop){
  1398. sec_left2.controls = false
  1399. }else{
  1400. sec_left2.controls = true
  1401. }
  1402. $('.sec_left2_f').css('z-index', '13')
  1403. $('.sec_left2').css('z-index', '13')
  1404. sec_left2.style.width = '100%'
  1405. sec_left2.style.height = '100%'
  1406. sec_left2.style.top = 0
  1407. sec_left2.style.left = 0
  1408. three_video_time = sec_left2.duration
  1409. $('.btn1').css('display', 'none')
  1410. $('.btn2').css('display', 'none')
  1411. $('.btn3').css('display', 'none')
  1412. if (!isloop) {
  1413. $('.dianClose').css('display', 'inline')
  1414. }
  1415. $('.sec_left1_f').css('display', 'none')
  1416. $('.img').css('background-image', 'none')
  1417. $('.sec_wrap1').css('background-image', 'none')
  1418. }
  1419. // 点击第二页中间视频
  1420. var sec_left3_zhan = document.getElementsByClassName('sec_left3_zhan')[0]
  1421. var sec_left3 = document.getElementsByClassName('sec_left3')[0]
  1422. var third_video_time
  1423. var videoFour = sec_left3_zhan.onclick = function () {
  1424. console.log(111)
  1425. sec_left3.play()
  1426. sec_left3.muted = false
  1427. if(isloop){
  1428. sec_left3.controls = false
  1429. }else{
  1430. sec_left3.controls = true
  1431. }
  1432. $('.sec_left3').css('z-index', '13')
  1433. $('.sec_left3_f').css('z-index', '13')
  1434. console.log('sec_leftsss')
  1435. third_video_time = sec_left3.duration
  1436. $('.btn1').css('display', 'none')
  1437. $('.sec_left3_f').css('display', 'block')
  1438. $('.btn3').css('display', 'none')
  1439. if (!isloop) {
  1440. $('.dianClose').css('display', 'inline')
  1441. }
  1442. $('.sec_left1_f').css('display', 'none')
  1443. $('.img').css('background-image', 'none')
  1444. $('.sec_wrap1').css('background-image', 'none')
  1445. }
  1446. // 点击第二页右上角视频
  1447. var sec_left6_zhan = document.getElementsByClassName('sec_left6_zhan')[0]
  1448. var sec_left6 = document.getElementsByClassName('sec_left6')[0]
  1449. var videoFive = sec_left6_zhan.onclick = function () {
  1450. console.log(111)
  1451. sec_left6.play()
  1452. sec_left6.muted = false
  1453. if(isloop){
  1454. sec_left6.controls = false
  1455. }else{
  1456. sec_left6.controls = true
  1457. }
  1458. $('.sec_left6_f').css('z-index', '13')
  1459. $('.sec_left6').css('z-index', '13')
  1460. $('.sec_left6_f').css('background-color', '#000')
  1461. $('.btn1').css('display', 'none')
  1462. $('.sec_left6_f').css('display', 'block')
  1463. $('.sec_left6_f').css('top', '0')
  1464. $('.btn3').css('display', 'none')
  1465. if (!isloop) {
  1466. $('.dianClose').css('display', 'inline')
  1467. }
  1468. $('.sec_left1_f').css('display', 'none')
  1469. $('.img').css('background-image', 'none')
  1470. $('.sec_wrap1').css('background-image', 'none')
  1471. setInterval(() => {
  1472. console.log(isloop,'isloop')
  1473. }, 2000);
  1474. }
  1475. // 点击第二页右中角视频
  1476. var sec_left4_zhan = document.getElementsByClassName('sec_left4_zhan')[0]
  1477. var sec_left4 = document.getElementsByClassName('sec_left4')[0]
  1478. var four_video_time
  1479. var videoFive = sec_left4_zhan.onclick = function () {
  1480. console.log(111)
  1481. sec_left4.play()
  1482. sec_left4.muted = false
  1483. if(isloop){
  1484. sec_left4.controls = false
  1485. }else{
  1486. sec_left4.controls = true
  1487. }
  1488. $('.sec_left4_f').css('z-index', '13')
  1489. $('.sec_left4').css('z-index', '13')
  1490. $('.sec_left4_f').css('background-color', '#000')
  1491. four_video_time = sec_left4.duration
  1492. $('.btn1').css('display', 'none')
  1493. $('.sec_left4_f').css('display', 'block')
  1494. $('.btn3').css('display', 'none')
  1495. if (!isloop) {
  1496. $('.dianClose').css('display', 'inline')
  1497. }
  1498. $('.sec_left1_f').css('display', 'none')
  1499. $('.img').css('background-image', 'none')
  1500. $('.sec_wrap1').css('background-image', 'none')
  1501. }
  1502. // 点击第二页右下角视频
  1503. var sec_left5_zhan = document.getElementsByClassName('sec_left5_zhan')[0]
  1504. var sec_left5 = document.getElementsByClassName('sec_left5')[0]
  1505. var five_video_time
  1506. var videoSix = sec_left5_zhan.onclick = function () {
  1507. console.log(111)
  1508. sec_left5.play()
  1509. sec_left5.muted = false
  1510. if(isloop){
  1511. sec_left5.controls = false
  1512. }else{
  1513. sec_left5.controls = true
  1514. }
  1515. $('.sec_left5_f').css('z-index', '13')
  1516. $('.sec_left5').css('z-index', '13')
  1517. five_video_time = sec_left5.duration
  1518. $('.btn1').css('display', 'none')
  1519. $('.sec_left5_f').css('display', 'block')
  1520. $('.btn3').css('display', 'none')
  1521. if (!isloop) {
  1522. $('.dianClose').css('display', 'inline')
  1523. }
  1524. $('.sec_left1_f').css('display', 'none')
  1525. $('.img').css('background-image', 'none')
  1526. $('.sec_wrap1').css('background-image', 'none')
  1527. }
  1528. // 点击第二页头部第一个视频
  1529. var btnOne = document.getElementsByClassName('btnOne')[0]
  1530. var btnOne_wrap = document.getElementsByClassName('btnOne_wrap')[0]
  1531. var top_video1 = document.getElementsByClassName('top_video1')[0]
  1532. var top_video1_time
  1533. var top_video1_fun = btnOne.onclick = function () {
  1534. console.log(111)
  1535. top_video1.play()
  1536. top_video1.muted = false
  1537. if(isloop){
  1538. top_video1.controls = false
  1539. }else{
  1540. top_video1.controls = true
  1541. }
  1542. top_video1_time = top_video1.duration
  1543. $('.btnOne_wrap').css('display', 'inline')
  1544. $('.btnOne').css('width', '1920px')
  1545. $('.btnOne').css('height', '1080px')
  1546. $('.btnOne').css('left', '0')
  1547. $('.btnOne').css('top', '0')
  1548. $('.btnOne').css('z-index', '13')
  1549. $('.top_video1').css('width', '100%')
  1550. $('.top_video1').css('height', '100%')
  1551. if (!isloop) {
  1552. $('.dianClose').css('display', 'inline')
  1553. }
  1554. $('.btn1').css('display', 'none')
  1555. $('.btn3').css('display', 'none')
  1556. $('.img').css('background-image', 'none')
  1557. $('.sec_wrap1').css('background-image', 'none')
  1558. }
  1559. // 点击第二页头部第二个视频
  1560. var btnTwo = document.getElementsByClassName('btnTwo')[0]
  1561. var btnTwo_wrap = document.getElementsByClassName('btnTwo_wrap')[0]
  1562. var top_video2 = document.getElementsByClassName('top_video2')[0]
  1563. var top_video2_time
  1564. var top_video2_fun = btnTwo.onclick = function () {
  1565. console.log(111)
  1566. top_video2.play()
  1567. top_video2.muted = false
  1568. if(isloop){
  1569. top_video2.controls = false
  1570. }else{
  1571. top_video2.controls = true
  1572. }
  1573. top_video2_time = top_video2.duration
  1574. $('.btnTwo_wrap').css('display', 'inline')
  1575. $('.btnTwo').css('width', '1920px')
  1576. $('.btnTwo').css('height', '1080px')
  1577. $('.btnTwo').css('left', '0')
  1578. $('.btnTwo').css('top', '0')
  1579. $('.btnTwo').css('z-index', '13')
  1580. if (!isloop) {
  1581. $('.dianClose').css('display', 'inline')
  1582. }
  1583. $('.btn1').css('display', 'none')
  1584. $('.btn3').css('display', 'none')
  1585. $('.img').css('background-image', 'none')
  1586. $('.sec_wrap1').css('background-image', 'none')
  1587. }
  1588. // 点击第二页头部第三个视频
  1589. var btnThree = document.getElementsByClassName('btnThree')[0]
  1590. var btnThree_wrap = document.getElementsByClassName('btnThree_wrap')[0]
  1591. var top_video3 = document.getElementsByClassName('top_video3')[0]
  1592. var top_video3_time
  1593. var top_video3_fun = btnThree.onclick = function () {
  1594. console.log(111)
  1595. top_video3.play()
  1596. top_video3.muted = false
  1597. if(isloop){
  1598. top_video3.controls = false
  1599. }else{
  1600. top_video3.controls = true
  1601. }
  1602. top_video3_time = top_video3.duration
  1603. $('.btnThree_wrap').css('display', 'inline')
  1604. $('.btnThree').css('width', '1920px')
  1605. $('.btnThree').css('height', '1080px')
  1606. $('.btnThree').css('left', '0')
  1607. $('.btnThree').css('top', '0')
  1608. $('.btnThree').css('z-index', '13')
  1609. if (!isloop) {
  1610. $('.dianClose').css('display', 'inline')
  1611. }
  1612. $('.btn1').css('display', 'none')
  1613. $('.btn3').css('display', 'none')
  1614. $('.img').css('background-image', 'none')
  1615. $('.sec_wrap1').css('background-image', 'none')
  1616. }
  1617. // 点击第二页头部第四个视频
  1618. var btnFour = document.getElementsByClassName('btnFour')[0]
  1619. var btnFour_wrap = document.getElementsByClassName('btnFour_wrap')[0]
  1620. var top_video4 = document.getElementsByClassName('top_video4')[0]
  1621. var top_video4_time
  1622. var top_video4_fun = btnFour.onclick = function () {
  1623. console.log(111)
  1624. top_video4.play()
  1625. top_video4.muted = false
  1626. if(isloop){
  1627. top_video4.controls = false
  1628. }else{
  1629. top_video4.controls = true
  1630. }
  1631. top_video4_time = top_video4.duration
  1632. $('.btnFour_wrap').css('display', 'inline')
  1633. $('.btnFour').css('width', '1920px')
  1634. $('.btnFour').css('height', '1080px')
  1635. $('.btnFour').css('left', '0')
  1636. $('.btnFour').css('top', '0')
  1637. $('.btnFour').css('z-index', '13')
  1638. if (!isloop) {
  1639. $('.dianClose').css('display', 'inline')
  1640. }
  1641. $('.btn1').css('display', 'none')
  1642. $('.btn3').css('display', 'none')
  1643. $('.img').css('background-image', 'none')
  1644. $('.sec_wrap1').css('background-image', 'none')
  1645. }
  1646. // 关闭按钮点击关闭视频
  1647. var closeBtns = closes.onclick = function () {
  1648. fang_click = false
  1649. video1.style.width = '362px'
  1650. video1.style.height = '215px'
  1651. video1.style.top = '772px'
  1652. video1.style.left = '1510px'
  1653. video1.muted = true
  1654. video1.controls = false
  1655. sec_left1.style.width = '380px'
  1656. sec_left1.style.height = '210px'
  1657. sec_left1.style.top = '133px'
  1658. sec_left1.style.left = '61px'
  1659. sec_left1.muted = true
  1660. sec_left1.controls = false
  1661. $('.sec_left2_f').css('z-index', '11')
  1662. $('.sec_left2').css('z-index', '11')
  1663. $('.sec_left3').css('z-index', '11')
  1664. $('.sec_left3_f').css('z-index', '11')
  1665. $('.sec_left4').css('z-index', '11')
  1666. $('.sec_left4_f').css('z-index', '11')
  1667. $('.sec_left5_f').css('z-index', '11')
  1668. $('.sec_left5').css('z-index', '11')
  1669. $('.sec_left6_f').css('z-index', '11')
  1670. $('.sec_left6').css('z-index', '11')
  1671. sec_left2.style.width = '380px'
  1672. sec_left2.style.height = '210px'
  1673. sec_left2.style.top = '524px'
  1674. sec_left2.style.left = '60px'
  1675. sec_left2.muted = true
  1676. sec_left2.controls = false
  1677. sec_left3.muted = true
  1678. sec_left3.controls = false
  1679. sec_left4.muted = true
  1680. sec_left4.controls = false
  1681. sec_left5.muted = true
  1682. sec_left5.controls = false
  1683. sec_left6.muted = true
  1684. sec_left6.controls = false
  1685. // 第二页头部视频
  1686. $('.btnOne_wrap').css('display', 'none')
  1687. $('.btnOne').css('width', '120px')
  1688. $('.btnOne').css('height', '30px')
  1689. $('.btnOne').css('left', '363px')
  1690. $('.btnOne').css('top', '12px')
  1691. top_video1.muted = true
  1692. top_video1.controls = false
  1693. $('.btnTwo_wrap').css('display', 'none')
  1694. $('.btnTwo').css('width', '120px')
  1695. $('.btnTwo').css('height', '30px')
  1696. $('.btnTwo').css('left', '500px')
  1697. $('.btnTwo').css('top', '12px')
  1698. top_video2.muted = true
  1699. top_video2.controls = false
  1700. $('.btnThree_wrap').css('display', 'none')
  1701. $('.btnThree').css('width', '640px')
  1702. $('.btnThree').css('height', '70px')
  1703. $('.btnThree').css('left', '640px')
  1704. top_video3.muted = true
  1705. top_video3.controls = false
  1706. $('.btnFour_wrap').css('display', 'none')
  1707. $('.btnFour').css('width', '120px')
  1708. $('.btnFour').css('height', '30px')
  1709. $('.btnFour').css('left', '1300px')
  1710. $('.btnFour').css('top', '12px')
  1711. top_video4.muted = true
  1712. top_video4.controls = false
  1713. $('.img').css('background-image', 'url(./first.jpg)')
  1714. $('.sec_wrap1').css('background-image', 'url(./second.jpg)')
  1715. // 移除闪烁边框
  1716. $('.shan1').removeClass('video_shan1')
  1717. $('.shan2').removeClass('video_shan2')
  1718. $('.shan3').removeClass('video_shan3')
  1719. $('.shan4').removeClass('video_shan4')
  1720. $('.shan5').removeClass('video_shan5')
  1721. $('.shan6').removeClass('video_shan6')
  1722. $('.btnOne').removeClass('btnOne_shan')
  1723. $('.btnTwo').removeClass('btnTwo_shan')
  1724. $('.btnThree').removeClass('btnThree_shan')
  1725. $('.btnFour').removeClass('btnFour_shan')
  1726. $('.sec_left1_f').css('display', 'block')
  1727. // 关闭第二页中间视频
  1728. $('.sec_left3_f').css('display', 'none')
  1729. // 关闭第二页右上角视频
  1730. $('.sec_left6_f').css('display', 'none')
  1731. // 关闭第二页右中角视频
  1732. $('.sec_left4_f').css('display', 'none')
  1733. // 关闭第二页右下角视频
  1734. $('.sec_left5_f').css('display', 'none')
  1735. $('.dianClose').css('display', 'none')
  1736. console.log(index, 'index')
  1737. if (index != 1 && index != -1) {
  1738. $('.btnAuto').css('display', 'inline')
  1739. $('.btn3').css('display', 'inline')
  1740. } else if (index != -1) {
  1741. $('.btn1').css('display', 'inline')
  1742. }
  1743. }
  1744. // 判断是否是自动播放
  1745. var loop_time
  1746. // 判断当前页码
  1747. var index = 0
  1748. // 手动点击按钮
  1749. $('.btnClick').click(() => {
  1750. console.log('dianji ')
  1751. clearInterval(loop_time)
  1752. closeBtns()
  1753. index = 0
  1754. time = 0
  1755. isloop = false
  1756. fang_click = false
  1757. $('.btnClick').css('display', 'none')
  1758. $('.btnClick').css('display', 'none')
  1759. $('.btnAuto').css('display', 'inline')
  1760. $('.sec_wrap1').css('display', 'none')
  1761. $('.btn3').css('display', 'inline')
  1762. $('.dianClose').css('display', 'none')
  1763. $('.img').css('background-image', 'url(./first.jpg)')
  1764. $('.sec_wrap1').css('background-image', 'url(./second.jpg)')
  1765. $('.btnOne_wrap').css('display', 'none')
  1766. $('.btnOne').css('width', '120px')
  1767. $('.btnOne').css('height', '30px')
  1768. $('.btnOne').css('left', '363px')
  1769. top_video1.muted = true
  1770. $('.btnTwo_wrap').css('display', 'none')
  1771. $('.btnTwo').css('width', '120px')
  1772. $('.btnTwo').css('height', '30px')
  1773. $('.btnTwo').css('left', '500px')
  1774. top_video2.muted = true
  1775. $('.btnThree_wrap').css('display', 'none')
  1776. $('.btnThree').css('width', '640px')
  1777. $('.btnThree').css('height', '70px')
  1778. $('.btnThree').css('left', '640px')
  1779. top_video3.muted = true
  1780. $('.btnFour_wrap').css('display', 'none')
  1781. $('.btnFour').css('width', '120px')
  1782. $('.btnFour').css('height', '30px')
  1783. $('.btnFour').css('left', '1300px')
  1784. top_video4.muted = true
  1785. })
  1786. // 自动播放按钮
  1787. videos.onclick = function () {
  1788. isloop = true
  1789. index = -1
  1790. fang_click = true
  1791. $('.btnAuto').css('display', 'none')
  1792. $('.btnClick').css('display', 'inline')
  1793. $('.dianClose').css('display', 'none')
  1794. $('.btn3').css('display', 'none')
  1795. var time = 0
  1796. loop_time = setInterval(() => {
  1797. time++
  1798. // 边框闪烁准备播放第一个视频
  1799. if (time == 13) {
  1800. $('.shan1').addClass('video_shan1')
  1801. }
  1802. // 开始播放第一个视频
  1803. if (time == 15) {
  1804. fang_click = false
  1805. video1.currentTime = 0
  1806. $('.shan1').removeClass('video_shan1')
  1807. videoOne()
  1808. // fang_click = true
  1809. }
  1810. // 第一个视频播放结束
  1811. if (time == (15 + Math.ceil(first_video_time))) {
  1812. closeBtns()
  1813. }
  1814. // 进入第二页
  1815. if (time == (15 + Math.ceil(first_video_time) + 2)) {
  1816. console.log('第二页')
  1817. $('.sec_wrap1').css('display', 'inline')
  1818. // $('.sec_wrap1').css('opacity', '1')
  1819. }
  1820. // 看第二页内容 边框闪烁准备播放第二个视频
  1821. if (time == (15 + Math.ceil(first_video_time) + 18)) {
  1822. $('.shan2').addClass('video_shan2')
  1823. }
  1824. // 开始播放第二个视频
  1825. if (time == (15 + Math.ceil(first_video_time) + 20)) {
  1826. sec_left1.currentTime = 0
  1827. $('.shan2').removeClass('video_shan2')
  1828. videoTwo()
  1829. }
  1830. // 第二个视频播放结束
  1831. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time))) {
  1832. closeBtns()
  1833. // videoThree()
  1834. }
  1835. // 边框闪烁准备播放第三个视频
  1836. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 2)) {
  1837. $('.shan3').addClass('video_shan3')
  1838. }
  1839. // 第三个视频开始播放
  1840. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4)) {
  1841. sec_left2.currentTime = 0
  1842. $('.shan3').removeClass('video_shan3')
  1843. videoThree()
  1844. }
  1845. // 第三个视频播放结束
  1846. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time))) {
  1847. closeBtns()
  1848. }
  1849. // 边框闪烁准备播放第四个视频
  1850. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 2)) {
  1851. $('.sec_left3_zhan').addClass('video_shan4')
  1852. }
  1853. // 第四个视频开始播放
  1854. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4)) {
  1855. sec_left3.currentTime = 0
  1856. $('.sec_left3_zhan').removeClass('video_shan4')
  1857. videoFour()
  1858. }
  1859. // 第四个视频播放结束
  1860. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time))) {
  1861. closeBtns()
  1862. }
  1863. // 边框闪烁准备播放第五个视频
  1864. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 2)) {
  1865. $('.sec_left4_zhan').addClass('video_shan5')
  1866. }
  1867. // 第五个视频开始播放
  1868. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4)) {
  1869. sec_left4.currentTime = 0
  1870. $('.sec_left4_zhan').removeClass('video_shan5')
  1871. videoFive()
  1872. }
  1873. // 第五个视频播放结束
  1874. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time))) {
  1875. closeBtns()
  1876. }
  1877. // 闪烁边框准备播放第六个视频
  1878. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 2)) {
  1879. $('.sec_left5_zhan').addClass('video_shan6')
  1880. }
  1881. // 第六个视频开始播放
  1882. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4)) {
  1883. sec_left5.currentTime = 0
  1884. $('.sec_left5_zhan').removeClass('video_shan6')
  1885. videoSix()
  1886. }
  1887. // 第六个视频播放结束
  1888. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time))) {
  1889. closeBtns()
  1890. // time = 0
  1891. // $('.sec_wrap1').css('display', 'none')
  1892. }
  1893. // 闪烁边框准备播放第七个视频
  1894. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 2)) {
  1895. $('.btnOne').addClass('btnOne_shan')
  1896. }
  1897. // 播放第七个视频
  1898. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4)) {
  1899. top_video1.currentTime = 0
  1900. $('.btnOne').removeClass('btnOne_shan')
  1901. top_video1_fun()
  1902. }
  1903. // 关闭第七个视频
  1904. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time))) {
  1905. closeBtns()
  1906. }
  1907. // 闪烁边框准备播放第8个视频
  1908. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 2)) {
  1909. $('.btnTwo').addClass('btnTwo_shan')
  1910. }
  1911. // 播放第8个视频
  1912. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4)) {
  1913. top_video2.currentTime = 0
  1914. $('.btnTwo').removeClass('btnTwo_shan')
  1915. top_video2_fun()
  1916. }
  1917. // 关闭第8个视频
  1918. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time))) {
  1919. closeBtns()
  1920. }
  1921. // 闪烁边框准备播放第9个视频
  1922. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 2)) {
  1923. $('.btnThree').addClass('btnThree_shan')
  1924. }
  1925. // 播放第9个视频
  1926. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 4)) {
  1927. top_video3.currentTime = 0
  1928. $('.btnThree').removeClass('btnThree_shan')
  1929. top_video3_fun()
  1930. }
  1931. // 关闭第9个视频
  1932. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 4 + Math.ceil(top_video3_time))) {
  1933. closeBtns()
  1934. }
  1935. // 闪烁边框准备播放第10个视频
  1936. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 4 + Math.ceil(top_video3_time) + 2)) {
  1937. $('.btnFour').addClass('btnFour_shan')
  1938. }
  1939. // 播放第10个视频
  1940. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 4 + Math.ceil(top_video3_time) + 4)) {
  1941. top_video4.currentTime = 0
  1942. $('.btnFour').removeClass('btnFour_shan')
  1943. top_video4_fun()
  1944. }
  1945. // 关闭第10个视频
  1946. if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time) + 4 + Math.ceil(top_video1_time) + 4 + Math.ceil(top_video2_time) + 4 + Math.ceil(top_video3_time) + 4 + Math.ceil(top_video4_time))) {
  1947. closeBtns()
  1948. time = 0
  1949. $('.sec_wrap1').css('display', 'none')
  1950. }
  1951. // if (time == (15 + Math.ceil(first_video_time) + 20 + Math.ceil(second_video_time) + 4 + Math.ceil(three_video_time) + 4 + Math.ceil(third_video_time) + 4 + Math.ceil(four_video_time) + 4 + Math.ceil(five_video_time))) {
  1952. // closeBtns()
  1953. // time = 0
  1954. // $('.sec_wrap1').css('display', 'none')
  1955. // }
  1956. }, 1000);
  1957. }
  1958. // 下一页点击
  1959. $('.btn3').click(() => {
  1960. index = index + 1
  1961. $('.btn3').css('display', 'none')
  1962. $('.btn1').css('display', 'inline')
  1963. // $('.sec_wrap1').css('opacity', '1')
  1964. // setTimeout(()=>{
  1965. $('.sec_wrap1').css('display', 'inline')
  1966. // },1500)
  1967. if (index == 0) {
  1968. $('.btnAuto').css('display', 'inline')
  1969. } else {
  1970. $('.btnAuto').css('display', 'none')
  1971. }
  1972. })
  1973. // 上一页点击
  1974. $('.btn1').click(() => {
  1975. index = index - 1
  1976. $('.btn3').css('display', 'inline')
  1977. $('.btn1').css('display', 'none')
  1978. $('.sec_wrap1').css('display', 'none')
  1979. // $('.sec_wrap1').css('opacity', '0')
  1980. if (index == 0) {
  1981. $('.btnAuto').css('display', 'inline')
  1982. } else {
  1983. $('.btnAuto').css('display', 'none')
  1984. }
  1985. })
  1986. </script>
  1987. </body>
  1988. </html>