gushidianzibao-h5/index.html

104 lines
3.6 KiB
HTML
Raw Permalink Normal View History

2024-12-26 14:18:10 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<title></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="Keywords" content="固始日报·手机版">
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1.0,maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<style>
html, body {
height: 100%;
margin: 0;
}
/* 美化整个滚动条 */
::-webkit-scrollbar {
width: 8px; /* 设置滚动条的宽度 */
background-color: #f9f9f9; /* 滚动条的背景颜色 */
}
/* 美化滚动条轨道 */
::-webkit-scrollbar-track {
background: #e1e1e1; /* 轨道的背景颜色 */
border-radius: 10px; /* 轨道的圆角 */
}
/* 美化滚动条的滑块 */
::-webkit-scrollbar-thumb {
background-color: #c1c1c1; /* 滑块的背景颜色 */
border-radius: 10px; /* 滑块的圆角 */
border: 2px solid #ffffff; /* 滑块边框 */
}
/* 当滑块悬停或活动时的样式 */
::-webkit-scrollbar-thumb:hover {
background: #a8a8a8; /* 悬停或活动状态下滑块的背景颜色 */
}
.gjz_css{
font-weight: 600;
color: #ff0000;
text-decoration: underline;
position: relative;
padding-right: 15px;
}
.gjz_css::after {
content: '✚'; /* Font Awesome 的用户图标 Unicode */
font-family: 'FontAwesome'; /* 确保使用正确的字体 */
font-size: 12px; /* 图标大小 */
color: #ff0000; /* 图标颜色 */
position: absolute;
top: -4px; /* 根据需要调整图标位置 */
right: 3px; /* 根据需要调整图标位置 */
}
</style>
</head>
<body style="margin: 0;">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script>
2025-01-23 09:35:55 +08:00
window.addEventListener('popstate', handlePopState);
function handlePopState() {
var isLogin = sessionStorage.getItem("isShow");
//alert(isLogin);
if(isLogin && isLogin==1){
sessionStorage.setItem("isShow",0);
setTimeout(()=>{
window.location.reload();
},50)
}
}
2024-12-26 14:18:10 +08:00
initPhonePage();
function initPhonePage() {
var userAgentInfo = navigator.userAgent;
console.log(userAgentInfo);
var Agents = new Array("Windows", "Win");
var local_url = window.location.href;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
2025-01-23 09:35:55 +08:00
var sURL2 = local_url.replace("/h5/#/", "/#/");
sURL2 = sURL2.replace("info", "");
2024-12-26 14:18:10 +08:00
console.log(sURL2);
2024-12-27 17:56:46 +08:00
sessionStorage.removeItem('DateIndexH5');
sessionStorage.removeItem('DateIndex');
sessionStorage.removeItem('DateListH5');
sessionStorage.removeItem('DateList');
sessionStorage.removeItem('year');
sessionStorage.removeItem('month');
sessionStorage.removeItem('day');
sessionStorage.removeItem('index');
sessionStorage.removeItem('newInfo');
2025-01-23 09:35:55 +08:00
sessionStorage.removeItem('H5Index');
2024-12-26 14:18:10 +08:00
window.location.href = sURL2;
}
}
}
</script>
</body>
</html>