|
|
@@ -16,9 +16,9 @@
|
|
|
<meta name="full-screen" content="yes" />
|
|
|
<meta name="x5-fullscreen" content="true" />
|
|
|
<meta name="theme-color" content="#000000" />
|
|
|
- <meta http-equiv="Pragma" content="no-cache">
|
|
|
- <meta http-equiv="Cache-Control" content="no-cache">
|
|
|
- <meta http-equiv="Expires" content="0">
|
|
|
+ <meta http-equiv="Pragma" content="no-cache" />
|
|
|
+ <meta http-equiv="Cache-Control" content="no-cache" />
|
|
|
+ <meta http-equiv="Expires" content="0" />
|
|
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
|
|
|
<% if (htmlWebpackPlugin.options.app) { %>
|
|
|
<script src="cordova.js"></script>
|
|
|
@@ -31,9 +31,20 @@
|
|
|
url('<%= BASE_URL %>font/iconfont.woff?t=1658717109985') format('woff'),
|
|
|
url('<%= BASE_URL %>font/iconfont.ttf?t=1658717109985') format('truetype');
|
|
|
}
|
|
|
+
|
|
|
+ .filter-gray {
|
|
|
+ filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
|
|
|
+ -webkit-filter: grayscale(100%);
|
|
|
+ -moz-filter: grayscale(100%);
|
|
|
+ -ms-filter: grayscale(100%);
|
|
|
+ -o-filter: grayscale(100%);
|
|
|
+ filter: grayscale(100%);
|
|
|
+ -webkit-filter: gray;
|
|
|
+ filter: gray;
|
|
|
+ }
|
|
|
</style>
|
|
|
</head>
|
|
|
- <body>
|
|
|
+ <body class="filter-gray">
|
|
|
<noscript>
|
|
|
<strong>
|
|
|
We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|