404.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <template>
  2. <!-- <div class="wscn-http404-container">
  3. <div class="wscn-http404">
  4. <div class="pic-404">
  5. <img class="pic-404__parent" src="@/assets/404_images/404.png" alt="404">
  6. <img class="pic-404__child left" src="@/assets/404_images/404_cloud.png" alt="404">
  7. <img class="pic-404__child mid" src="@/assets/404_images/404_cloud.png" alt="404">
  8. <img class="pic-404__child right" src="@/assets/404_images/404_cloud.png" alt="404">
  9. </div>
  10. <div class="bullshit">
  11. <div class="bullshit__oops">OOPS!</div>
  12. <div class="bullshit__info">All rights reserved
  13. <a style="color:#20a0ff" href="https://wallstreetcn.com" target="_blank">wallstreetcn</a>
  14. </div>
  15. <div class="bullshit__headline">{{ message }}</div>
  16. <div class="bullshit__info">Please check that the URL you entered is correct, or click the button below to return to the homepage.</div>
  17. <a href="" class="bullshit__return-home">Back to home</a>
  18. </div>
  19. </div>
  20. </div> -->
  21. <div class="error_404">
  22. <div class="error_404_content">
  23. <img src="../assets/logo/nopage.png" alt="" srcset="">
  24. </div>
  25. <el-button style="margin-top:30px;" size="small" type="primary">
  26. <a href="" class="bullshit__return-home">回到首页</a>
  27. </el-button>
  28. </div>
  29. </template>
  30. <script>
  31. export default {
  32. name: 'Page404',
  33. computed: {
  34. message () {
  35. return 'The webmaster said that you can not enter this page...'
  36. }
  37. }
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .error_404 {
  42. transform: translate(-50%, -50%);
  43. position: absolute;
  44. top: 40%;
  45. left: 50%;
  46. text-align: center;
  47. }
  48. .wscn-http404-container {
  49. transform: translate(-50%, -50%);
  50. position: absolute;
  51. top: 40%;
  52. left: 50%;
  53. }
  54. .wscn-http404 {
  55. position: relative;
  56. width: 1200px;
  57. padding: 0 50px;
  58. overflow: hidden;
  59. .pic-404 {
  60. position: relative;
  61. float: left;
  62. width: 600px;
  63. overflow: hidden;
  64. &__parent {
  65. width: 100%;
  66. }
  67. &__child {
  68. position: absolute;
  69. &.left {
  70. width: 80px;
  71. top: 17px;
  72. left: 220px;
  73. opacity: 0;
  74. animation-name: cloudLeft;
  75. animation-duration: 2s;
  76. animation-timing-function: linear;
  77. animation-fill-mode: forwards;
  78. animation-delay: 1s;
  79. }
  80. &.mid {
  81. width: 46px;
  82. top: 10px;
  83. left: 420px;
  84. opacity: 0;
  85. animation-name: cloudMid;
  86. animation-duration: 2s;
  87. animation-timing-function: linear;
  88. animation-fill-mode: forwards;
  89. animation-delay: 1.2s;
  90. }
  91. &.right {
  92. width: 62px;
  93. top: 100px;
  94. left: 500px;
  95. opacity: 0;
  96. animation-name: cloudRight;
  97. animation-duration: 2s;
  98. animation-timing-function: linear;
  99. animation-fill-mode: forwards;
  100. animation-delay: 1s;
  101. }
  102. @keyframes cloudLeft {
  103. 0% {
  104. top: 17px;
  105. left: 220px;
  106. opacity: 0;
  107. }
  108. 20% {
  109. top: 33px;
  110. left: 188px;
  111. opacity: 1;
  112. }
  113. 80% {
  114. top: 81px;
  115. left: 92px;
  116. opacity: 1;
  117. }
  118. 100% {
  119. top: 97px;
  120. left: 60px;
  121. opacity: 0;
  122. }
  123. }
  124. @keyframes cloudMid {
  125. 0% {
  126. top: 10px;
  127. left: 420px;
  128. opacity: 0;
  129. }
  130. 20% {
  131. top: 40px;
  132. left: 360px;
  133. opacity: 1;
  134. }
  135. 70% {
  136. top: 130px;
  137. left: 180px;
  138. opacity: 1;
  139. }
  140. 100% {
  141. top: 160px;
  142. left: 120px;
  143. opacity: 0;
  144. }
  145. }
  146. @keyframes cloudRight {
  147. 0% {
  148. top: 100px;
  149. left: 500px;
  150. opacity: 0;
  151. }
  152. 20% {
  153. top: 120px;
  154. left: 460px;
  155. opacity: 1;
  156. }
  157. 80% {
  158. top: 180px;
  159. left: 340px;
  160. opacity: 1;
  161. }
  162. 100% {
  163. top: 200px;
  164. left: 300px;
  165. opacity: 0;
  166. }
  167. }
  168. }
  169. }
  170. .bullshit {
  171. position: relative;
  172. float: left;
  173. width: 300px;
  174. padding: 30px 0;
  175. overflow: hidden;
  176. &__oops {
  177. font-size: 32px;
  178. font-weight: bold;
  179. line-height: 40px;
  180. color: #1482f0;
  181. opacity: 0;
  182. margin-bottom: 20px;
  183. animation-name: slideUp;
  184. animation-duration: 0.5s;
  185. animation-fill-mode: forwards;
  186. }
  187. &__headline {
  188. font-size: 20px;
  189. line-height: 24px;
  190. color: #222;
  191. font-weight: bold;
  192. opacity: 0;
  193. margin-bottom: 10px;
  194. animation-name: slideUp;
  195. animation-duration: 0.5s;
  196. animation-delay: 0.1s;
  197. animation-fill-mode: forwards;
  198. }
  199. &__info {
  200. font-size: 13px;
  201. line-height: 21px;
  202. color: grey;
  203. opacity: 0;
  204. margin-bottom: 30px;
  205. animation-name: slideUp;
  206. animation-duration: 0.5s;
  207. animation-delay: 0.2s;
  208. animation-fill-mode: forwards;
  209. }
  210. &__return-home {
  211. display: block;
  212. float: left;
  213. width: 110px;
  214. height: 36px;
  215. background: #1482f0;
  216. border-radius: 100px;
  217. text-align: center;
  218. color: #ffffff;
  219. opacity: 0;
  220. font-size: 14px;
  221. line-height: 36px;
  222. cursor: pointer;
  223. animation-name: slideUp;
  224. animation-duration: 0.5s;
  225. animation-delay: 0.3s;
  226. animation-fill-mode: forwards;
  227. }
  228. @keyframes slideUp {
  229. 0% {
  230. transform: translateY(60px);
  231. opacity: 0;
  232. }
  233. 100% {
  234. transform: translateY(0);
  235. opacity: 1;
  236. }
  237. }
  238. }
  239. }
  240. </style>