index.module.less 7.0 KB

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