iosEnter.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="icon" href="../static/img/favicon2.ico" type="img/x-ico">
  8. <link rel="stylesheet" href="../static/js/vender/bootstrap/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/css/experience2.css">
  10. <link rel="stylesheet" href="../static/js/vender/toastr/toastr.min.css">
  11. <script src="../static/js/vender/jquery-3.4.1.min.js"></script>
  12. <script src="../static/js/vender/bootstrap/js/bootstrap.min.js"></script>
  13. <script src="../static/js/vender/toastr/toastr.min.js"></script>
  14. <script src="../static/js/vender/config.js"></script>
  15. <script>
  16. toastr.options.positionClass = 'toast-center-center';
  17. </script>
  18. </head>
  19. <div class="container">
  20. <div class="index-icon" id="index-what">
  21. <img class="img" src="../static/img/iosEnter/index-what.png" />
  22. </div>
  23. <div class="index-icon" id="index-phone">
  24. <img class="img" src="../static/img/iosEnter/index-phone.png" />
  25. </div>
  26. </div>
  27. <script type="text/javascript" th:inline="javascript">
  28. let node = document.getElementById('index-what');
  29. let phone = document.getElementById('index-phone');
  30. node.addEventListener('click', () => {
  31. window.location.href = 'https://www.baidu.com/'
  32. })
  33. phone.addEventListener('click', () => {
  34. window.location.href = 'https://client.phone.androidscloud.com/cloud/phone/web/#/pages/index/index'
  35. })
  36. </script>
  37. </body>
  38. <style>
  39. .container{
  40. width: 100%;
  41. height: 98vh;
  42. padding-top: 0.2rem;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. background-color: rgba(16, 16, 16, 1);
  47. }
  48. .index-icon{
  49. width: 6.5rem;
  50. height: 2.28rem;
  51. padding-top: 0.36rem;
  52. }
  53. .img{
  54. width: 100%;
  55. height: 100%;
  56. }
  57. #toast-container>.toast-error {
  58. background-image: none !important;
  59. }
  60. .toast-error {
  61. background-color: rgba(0, 0, 0, 0.8);
  62. }
  63. #toast-container>div {
  64. font-size: 14px;
  65. min-width: 80px !important;
  66. padding: 12px !important;
  67. box-shadow: none;
  68. }
  69. @media (max-width: 480px) and (min-width: 241px) {
  70. #toast-container>div {
  71. min-width: 80px !important;
  72. width: auto;
  73. }
  74. }
  75. @media only screen and (min-width: 640px) {
  76. .toast-center-center {
  77. top: 50%;
  78. left: 50%;
  79. transform: translate(-50%, -50%);
  80. }
  81. }
  82. @media only screen and (max-width: 640px) {
  83. .toast-center-center {
  84. top: 50%;
  85. left: 50%;
  86. transform: translate(-50%, -50%);
  87. }
  88. }
  89. input::-webkit-input-placeholder {
  90. color: #BBBBBB;
  91. }
  92. input::-moz-placeholder {
  93. /* Mozilla Firefox 19+ */
  94. color: #BBBBBB;
  95. }
  96. input:-moz-placeholder {
  97. /* Mozilla Firefox 4 to 18 */
  98. color: #BBBBBB;
  99. }
  100. input:-ms-input-placeholder {
  101. /* Internet Explorer 10-11 */
  102. color: #BBBBBB;
  103. }
  104. </style>
  105. </html>