404.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <template>
  2. <div class="error-container">
  3. <div class="error-content">
  4. <el-row :gutter="20">
  5. <el-col :xs="24" :sm="24" :md="12" :lg="12" :xl="12">
  6. <div class="pic-error">
  7. <img
  8. alt="401"
  9. class="pic-error-parent"
  10. src="@/assets/error_images/404.png"
  11. />
  12. <img
  13. alt="401"
  14. class="pic-error-child left"
  15. src="@/assets/error_images/cloud.png"
  16. />
  17. <img
  18. alt="401"
  19. class="pic-error-child"
  20. src="@/assets/error_images/cloud.png"
  21. />
  22. <img
  23. alt="401"
  24. class="pic-error-child"
  25. src="@/assets/error_images/cloud.png"
  26. />
  27. </div>
  28. </el-col>
  29. <el-col :xs="24" :sm="24" :md="12" :lg="12" :xl="12">
  30. <div class="bullshit">
  31. <div class="bullshit-oops">{{ oops }}</div>
  32. <div class="bullshit-headline">{{ headline }}</div>
  33. <div class="bullshit-info">{{ info }}</div>
  34. <a class="bullshit-return-home" href="#/index">
  35. {{ jumpTime }}s&nbsp;{{ btn }}
  36. </a>
  37. </div>
  38. </el-col>
  39. </el-row>
  40. </div>
  41. </div>
  42. </template>
  43. <script>
  44. export default {
  45. name: "Page404",
  46. data() {
  47. return {
  48. jumpTime: 5,
  49. oops: "抱歉!",
  50. headline: "当前页面不存在...",
  51. info: "请检查您输入的网址是否正确,或点击下面的按钮返回首页。",
  52. btn: "返回首页",
  53. timer: 0,
  54. };
  55. },
  56. mounted() {
  57. this.timeChange();
  58. },
  59. beforeDestroy() {
  60. clearInterval(this.timer);
  61. },
  62. methods: {
  63. timeChange() {
  64. this.timer = setInterval(() => {
  65. if (this.jumpTime) {
  66. this.jumpTime--;
  67. } else {
  68. this.$router.push({ path: "/" });
  69. this.$store.dispatch("tabsBar/delOthersRoutes", {
  70. path: "/",
  71. });
  72. clearInterval(this.timer);
  73. }
  74. }, 1000);
  75. },
  76. },
  77. };
  78. </script>
  79. <style lang="scss" scoped>
  80. .error-container {
  81. position: absolute;
  82. top: 40%;
  83. left: 50%;
  84. transform: translate(-50%, -50%);
  85. .error-content {
  86. .pic-error {
  87. position: relative;
  88. float: left;
  89. width: 120%;
  90. overflow: hidden;
  91. &-parent {
  92. width: 100%;
  93. }
  94. &-child {
  95. position: absolute;
  96. &.left {
  97. top: 17px;
  98. left: 220px;
  99. width: 80px;
  100. opacity: 0;
  101. animation-name: cloudLeft;
  102. animation-duration: 2s;
  103. animation-timing-function: linear;
  104. animation-delay: 1s;
  105. animation-fill-mode: forwards;
  106. }
  107. &.mid {
  108. top: 10px;
  109. left: 420px;
  110. width: 46px;
  111. opacity: 0;
  112. animation-name: cloudMid;
  113. animation-duration: 2s;
  114. animation-timing-function: linear;
  115. animation-delay: 1.2s;
  116. animation-fill-mode: forwards;
  117. }
  118. &.right {
  119. top: 100px;
  120. left: 500px;
  121. width: 62px;
  122. opacity: 0;
  123. animation-name: cloudRight;
  124. animation-duration: 2s;
  125. animation-timing-function: linear;
  126. animation-delay: 1s;
  127. animation-fill-mode: forwards;
  128. }
  129. @keyframes cloudLeft {
  130. 0% {
  131. top: 17px;
  132. left: 220px;
  133. opacity: 0;
  134. }
  135. 20% {
  136. top: 33px;
  137. left: 188px;
  138. opacity: 1;
  139. }
  140. 80% {
  141. top: 81px;
  142. left: 92px;
  143. opacity: 1;
  144. }
  145. 100% {
  146. top: 97px;
  147. left: 60px;
  148. opacity: 0;
  149. }
  150. }
  151. @keyframes cloudMid {
  152. 0% {
  153. top: 10px;
  154. left: 420px;
  155. opacity: 0;
  156. }
  157. 20% {
  158. top: 40px;
  159. left: 360px;
  160. opacity: 1;
  161. }
  162. 70% {
  163. top: 130px;
  164. left: 180px;
  165. opacity: 1;
  166. }
  167. 100% {
  168. top: 160px;
  169. left: 120px;
  170. opacity: 0;
  171. }
  172. }
  173. @keyframes cloudRight {
  174. 0% {
  175. top: 100px;
  176. left: 500px;
  177. opacity: 0;
  178. }
  179. 20% {
  180. top: 120px;
  181. left: 460px;
  182. opacity: 1;
  183. }
  184. 80% {
  185. top: 180px;
  186. left: 340px;
  187. opacity: 1;
  188. }
  189. 100% {
  190. top: 200px;
  191. left: 300px;
  192. opacity: 0;
  193. }
  194. }
  195. }
  196. }
  197. .bullshit {
  198. position: relative;
  199. float: left;
  200. width: 300px;
  201. padding: 30px 0;
  202. overflow: hidden;
  203. &-oops {
  204. margin-bottom: 20px;
  205. font-size: 32px;
  206. font-weight: bold;
  207. line-height: 40px;
  208. color: $base-color-blue;
  209. opacity: 0;
  210. animation-name: slideUp;
  211. animation-duration: 0.5s;
  212. animation-fill-mode: forwards;
  213. }
  214. &-headline {
  215. margin-bottom: 10px;
  216. font-size: 20px;
  217. font-weight: bold;
  218. line-height: 24px;
  219. color: #222;
  220. opacity: 0;
  221. animation-name: slideUp;
  222. animation-duration: 0.5s;
  223. animation-delay: 0.1s;
  224. animation-fill-mode: forwards;
  225. }
  226. &-info {
  227. margin-bottom: 30px;
  228. font-size: 13px;
  229. line-height: 21px;
  230. color: $base-color-gray;
  231. opacity: 0;
  232. animation-name: slideUp;
  233. animation-duration: 0.5s;
  234. animation-delay: 0.2s;
  235. animation-fill-mode: forwards;
  236. }
  237. &-return-home {
  238. display: block;
  239. float: left;
  240. width: 110px;
  241. height: 36px;
  242. font-size: 14px;
  243. line-height: 36px;
  244. color: #fff;
  245. text-align: center;
  246. cursor: pointer;
  247. background: $base-color-blue;
  248. border-radius: 100px;
  249. opacity: 0;
  250. animation-name: slideUp;
  251. animation-duration: 0.5s;
  252. animation-delay: 0.3s;
  253. animation-fill-mode: forwards;
  254. }
  255. @keyframes slideUp {
  256. 0% {
  257. opacity: 0;
  258. transform: translateY(60px);
  259. }
  260. 100% {
  261. opacity: 1;
  262. transform: translateY(0);
  263. }
  264. }
  265. }
  266. }
  267. }
  268. </style>