index.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <link rel="stylesheet" href="/iconfont.css" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <title>vue-pure-admin</title>
  9. <script src="/sortable.min.js"></script>
  10. <script>
  11. window.process = {};
  12. </script>
  13. </head>
  14. <body>
  15. <div id="app">
  16. <style>
  17. * {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. html,
  22. body {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. background: #000;
  29. overflow: hidden;
  30. font-family: "Reggae One", cursive;
  31. }
  32. p {
  33. font-size: 8vw;
  34. overflow: hidden;
  35. -webkit-text-stroke: 3px #7272a5;
  36. }
  37. span {
  38. display: block;
  39. font-size: 20px;
  40. overflow: hidden;
  41. color: green;
  42. text-align: center;
  43. }
  44. p::before {
  45. content: " ";
  46. width: 100%;
  47. height: 100%;
  48. position: absolute;
  49. left: 0;
  50. top: 0;
  51. background-image: linear-gradient(45deg, #ff269b, #2ab5f5, #ffbf00);
  52. mix-blend-mode: multiply;
  53. }
  54. p::after {
  55. content: "";
  56. background: radial-gradient(circle, #fff, #000 50%);
  57. background-size: 25% 25%;
  58. position: absolute;
  59. top: -100%;
  60. left: -100%;
  61. right: 0;
  62. bottom: 0;
  63. mix-blend-mode: color-dodge;
  64. animation: mix 2s linear infinite;
  65. }
  66. @keyframes mix {
  67. to {
  68. transform: translate(50%, 50%);
  69. }
  70. }
  71. </style>
  72. <div class="g-container">
  73. <p>Pure-Admin</p>
  74. <span class="_develop"></span>
  75. </div>
  76. </div>
  77. <script>
  78. // 此代码仅用于开发环境的友好提示,项目打包前请去掉这段js代码 This code is only used as a friendly reminder of the development environment, please remove this js code before packaging the project
  79. window.onload = function () {
  80. (function () {
  81. const ua = navigator.userAgent.toLowerCase();
  82. const re = /(msie|firefox|chrome|opera|version).*?([\d.]+)/;
  83. const m = ua.match(re);
  84. const Sys = {
  85. browser: m[1].replace(/version/, "'safari"),
  86. version: m[2]
  87. };
  88. const browser = Array.of("chrome", "firefox").includes(Sys.browser);
  89. const version = parseFloat(Sys.version);
  90. const el = document.querySelector("._develop");
  91. if (el) {
  92. if (browser && version >= 90) {
  93. let success =
  94. document.createTextNode("当前浏览器版本很适合开发!!! 😃");
  95. el.appendChild(success);
  96. } else {
  97. let warn = document.createTextNode(
  98. "当前浏览器版本不适合开发,建议使用最新版本的谷歌或者火狐浏览器!!!😯"
  99. );
  100. el.appendChild(warn);
  101. el.style.color = "red";
  102. }
  103. }
  104. return Sys;
  105. })();
  106. };
  107. </script>
  108. <script type="module" src="/src/main.ts"></script>
  109. </body>
  110. </html>