index.module.less 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. .delayContainer {
  2. position: relative;
  3. width: 100vw;
  4. height: 100vh;
  5. overflow: hidden;
  6. // background-image: url('./image/icon_bg.png');
  7. background-size: 110% 110%;
  8. background-position: center center;
  9. background-repeat: no-repeat;
  10. //background: darkblue;
  11. // perspective: 500px;
  12. .delayBg {
  13. position: relative;
  14. width: 130%;
  15. height: 100%;
  16. // top: -10%;
  17. left: -15%;
  18. }
  19. .delayAdorn {
  20. position: absolute;
  21. left: 50%;
  22. top: 50%;
  23. transform: translate(-50%,-50%);
  24. pointer-events: none;
  25. width: 100%;
  26. }
  27. .leftAdorn {
  28. position: fixed;
  29. left: 0;
  30. bottom: 0;
  31. width: 1.66rem;
  32. }
  33. .rightAdorn {
  34. position: fixed;
  35. right: 0;
  36. bottom: 0;
  37. width: 1.28rem;
  38. }
  39. }
  40. .animationContainer {
  41. perspective: 500px;
  42. pointer-events: none;
  43. }
  44. .delayBackBtn {
  45. position: absolute;
  46. left: 20px;
  47. top: 20px;
  48. display: block;
  49. width: 21px;
  50. height: 21px;
  51. }
  52. .delayContent {
  53. position: absolute;
  54. left: 50%;
  55. top: 50%;
  56. transform: translate(-50%, -50%);
  57. animation: delayContentFrame infinite 10s ease-in-out both;
  58. pointer-events: none;
  59. .iconContent {
  60. display: block;
  61. width: 237px;
  62. height: 167px;
  63. }
  64. .iconDuihua {
  65. position: absolute;
  66. top: -4px;
  67. left: 143px;
  68. display: block;
  69. transform-origin: left bottom;
  70. animation: iconDuihuaScale .5s linear both;
  71. }
  72. .iconDuihua_delay{
  73. animation-delay: .7s;
  74. }
  75. .iconDuihua1 {
  76. width: 160px;
  77. height: 45px;
  78. }
  79. .iconDuihua2 {
  80. width: 141px;
  81. height: 39px;
  82. }
  83. .iconDuihua3 {
  84. width: 164px;
  85. height: 37px;
  86. }
  87. .iconDianchi {
  88. display: block;
  89. position: absolute;
  90. left: 43px;
  91. bottom: -21px;
  92. width: 150px;
  93. height: 44px;
  94. }
  95. .iconDianchiActive {
  96. display: block;
  97. position: absolute;
  98. left: 52px;
  99. bottom: -8px;
  100. width: 132px;
  101. height: 22px;
  102. pointer-events: auto;
  103. }
  104. }
  105. .delayBody {
  106. position: absolute;
  107. left: 50%;
  108. top: 50%;
  109. transform: translate(-50%,100%);
  110. .delayBox {
  111. width: 4.68rem;
  112. position: relative;
  113. .dbTop {
  114. position: absolute;
  115. left: 50%;
  116. transform: translate(-50%, -40%);
  117. .topIcon {
  118. width: 2.99rem;
  119. height: 0.39rem;
  120. }
  121. .topDots {
  122. position: absolute;
  123. left: 0;
  124. top: 0;
  125. width: 100%;
  126. height: 90%;
  127. display: flex;
  128. align-items: center;
  129. justify-content: space-between;
  130. padding: 0 0.22rem;
  131. img {
  132. width: 0.2rem;
  133. height: 0.2rem;
  134. }
  135. .aniDot3 {
  136. position: relative;
  137. width: 0.2rem;
  138. height: 0.2rem;
  139. background-image: url('./image/step_state_icon3.png');
  140. background-size: 100% 100%;
  141. background-position: center center;
  142. background-repeat: no-repeat;
  143. animation: aniBg 1.8s step-end infinite;
  144. }
  145. }
  146. }
  147. .dbContext {
  148. width: 4.68rem;
  149. height: 0.95rem;
  150. }
  151. .dbBtn {
  152. position: absolute;
  153. right: 0.21rem;
  154. bottom: 0.23rem;
  155. width: 1.21rem;
  156. height: 0.35rem;
  157. cursor: pointer;
  158. z-index: 999;
  159. }
  160. }
  161. }
  162. @keyframes aniBg {
  163. 0% {
  164. background-image: url('./image/step_state_icon3.png');
  165. }
  166. 25% {
  167. background-image: url('./image/step_state_icon1.png');
  168. }
  169. 50% {
  170. background-image: url('./image/step_state_icon3.png');
  171. }
  172. 75% {
  173. background-image: url('./image/step_state_icon1.png');
  174. }
  175. 100% {
  176. background-image: url('./image/step_state_icon3.png');
  177. }
  178. }
  179. @keyframes delayContentFrame {
  180. 0% {
  181. top: 47%;
  182. }
  183. 50% {
  184. top: 53%;
  185. }
  186. 100% {
  187. top: 47%
  188. }
  189. }
  190. .delayImage {
  191. display: block;
  192. position: absolute;
  193. }
  194. .icon1 {
  195. left: 119px;
  196. top: 12px;
  197. width: 59px;
  198. height: 49px;
  199. animation: icon1 infinite 5s linear;
  200. }
  201. @keyframes icon1 {
  202. 0% {
  203. transform: translateY(-6px);
  204. }
  205. 50% {
  206. transform: translateY(6px);
  207. }
  208. 100% {
  209. transform: translateY(-6px);
  210. }
  211. }
  212. .icon2 {
  213. left: 186px;
  214. top: 18px;
  215. width: 34px;
  216. height: 42px;
  217. animation: icon3 infinite 1.5s linear;
  218. }
  219. .icon3 {
  220. left: 167px;
  221. top: 66px;
  222. width: 12px;
  223. height: 12px;
  224. animation: icon3 infinite 2s linear;
  225. }
  226. @keyframes icon3 {
  227. 0% {
  228. transform: scale(1.3);
  229. }
  230. 50% {
  231. transform: scale(1);
  232. }
  233. 100% {
  234. transform: scale(1.3);
  235. }
  236. }
  237. .icon4 {
  238. left: 108px;
  239. top: 97px;
  240. width: 49px;
  241. height: 50px;
  242. animation: icon3 infinite 2s 1s linear;
  243. }
  244. .icon5 {
  245. left: -20px;
  246. top: 148px;
  247. width: 106px;
  248. height: 55px;
  249. }
  250. .icon6 {
  251. left: 53px;
  252. top: 0px;
  253. width: 84px;
  254. height: 118px;
  255. animation: icon6 2s linear infinite;
  256. }
  257. @keyframes icon6 {
  258. 100% {
  259. transform: translate(-30vw, 50vh);
  260. opacity: .5;
  261. }
  262. }
  263. .icon7 {
  264. right: 72px;
  265. top: -40px;
  266. width: 50px;
  267. height: 40px;
  268. animation: icon7 12s linear 2s infinite;
  269. }
  270. @keyframes icon7 {
  271. 100% {
  272. transform: translate(-70vw, 120vh);
  273. }
  274. }
  275. .icon8 {
  276. right: -37px;
  277. top: 0;
  278. width: 37px;
  279. height: 31px;
  280. animation: icon8 8s linear infinite;
  281. }
  282. @keyframes icon8 {
  283. 100% {
  284. transform: translate(-70vw, 100vh);
  285. }
  286. }
  287. .icon9 {
  288. right: -11px;
  289. top: 19px;
  290. width: 84px;
  291. height: 118px;
  292. animation: icon9 2s linear infinite;
  293. }
  294. @keyframes icon9 {
  295. 100% {
  296. transform: translate(-30vw, 50vh);
  297. opacity: .5;
  298. }
  299. }
  300. .icon10 {
  301. right: 7px;
  302. top: 55px;
  303. width: 27px;
  304. height: 22px;
  305. }
  306. .icon11 {
  307. right: -30px;
  308. top: 136px;
  309. width: 102px;
  310. height: 106px;
  311. transform-style: preserve-3d;
  312. animation: icon11 60s linear infinite;
  313. }
  314. @keyframes icon11 {
  315. 100% {
  316. transform: rotate(360deg);
  317. }
  318. }
  319. .icon12 {
  320. left: 0;
  321. top: 0;
  322. width: 100%;
  323. }
  324. .heartbeat {
  325. animation: heartbeat 1.5s ease-in-out infinite both;
  326. }
  327. @keyframes heartbeat {
  328. from {
  329. transform: scale(1);
  330. transform-origin: center center;
  331. animation-timing-function: ease-out;
  332. }
  333. 10% {
  334. -webkit-transform: scale(0.91);
  335. transform: scale(0.91);
  336. animation-timing-function: ease-in;
  337. }
  338. 17% {
  339. transform: scale(0.98);
  340. animation-timing-function: ease-out;
  341. }
  342. 33% {
  343. transform: scale(0.87);
  344. animation-timing-function: ease-in;
  345. }
  346. 45% {
  347. transform: scale(1);
  348. animation-timing-function: ease-out;
  349. }
  350. }
  351. @keyframes iconDuihuaScale {
  352. 0% {
  353. transform: scale(.5);
  354. opacity: 0;
  355. }
  356. 100% {
  357. transform: scale(1);
  358. opacity: 1;
  359. }
  360. }