| 1234567891011121314151617181920212223242526272829303132333435 |
- <html lang="zh-cn">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <meta name="theme-color" content="#000000">
- <script src="./js/mui.min.js"></script>
- <title>2023年中国航油-管理年鉴</title>
- <script>
- mui.plusReady(function() {
- plus.navigator.closeSplashscreen();
- const device = plus.device;
- var index = mui.preload({
- url: './bookdetail.html',
- id: 'bookdetail',
- styles: {
- popGesture: "hide"
- }
- });
- setTimeout(function() {
- index.show(); // 显示窗口
- }, 2000);
- });
- </script>
- <style>
- body {
- background: url(img/title.png) top center no-repeat;
- background-size: cover;
- }
- </style>
- </head>
- <body>
- </body>
- </html>
|