start.html 950 B

1234567891011121314151617181920212223242526272829303132333435
  1. <html lang="zh-cn">
  2. <head>
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  5. <meta name="theme-color" content="#000000">
  6. <script src="./js/mui.min.js"></script>
  7. <title>2023年中国航油-管理年鉴</title>
  8. <script>
  9. mui.plusReady(function() {
  10. plus.navigator.closeSplashscreen();
  11. const device = plus.device;
  12. var index = mui.preload({
  13. url: './bookdetail.html',
  14. id: 'bookdetail',
  15. styles: {
  16. popGesture: "hide"
  17. }
  18. });
  19. setTimeout(function() {
  20. index.show(); // 显示窗口
  21. }, 2000);
  22. });
  23. </script>
  24. <style>
  25. body {
  26. background: url(img/title.png) top center no-repeat;
  27. background-size: cover;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. </body>
  33. </html>