树莓派ouxuanac启动器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1012 B

  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="jquery-3.1.1.min.js"></script>
  6. <style>
  7. html {
  8. text-align: center;
  9. background: #2C3E50;
  10. /*background: linear-gradient(135deg, #3023ae 0%, #c86dd7 100%);*/
  11. cursor: none;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div style="text-align:center;width:120px;height:120px;position:fixed;top:50%;left:50%;margin-left:-60px;margin-top:-60px;background: #2C3E50;">
  17. <img src="oval.svg" style="width:100%;height:100%;">
  18. </div>
  19. </body>
  20. <script>
  21. function check(){
  22. $.ajax({
  23. url: "http://127.0.0.1",
  24. success: function () {
  25. setTimeout(function () {
  26. location.href = "http://127.0.0.1/"
  27. },3000)
  28. },
  29. error: function () {
  30. setTimeout(function () {
  31. check()
  32. },1000)
  33. }
  34. });
  35. }
  36. check();
  37. </script>
  38. </html>