Files
orico-official-website/app/index/view/pc/public/base.html

136 lines
4.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
{block name="title"}<title>{$basic_config['website_seo_title']['value']}</title>{/block}
{block name="seo"}
<meta name="keywords" content="{$basic_config['website_seo_keyword']['value']}" />
<meta name="description" content="{$basic_config['website_seo_description']['value']}" />
{/block}
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="__CSS__/public.css" />
<link rel="stylesheet" type="text/css" href="__CSS__/fonts.css" />
<link rel="stylesheet" type="text/css" href="__CSS__/orico_header.css" />
<link rel="stylesheet" type="text/css" href="__CSS__/orico_footer.css" />
{block name="style"}{/block}
<script>
// 增强型 UC 浏览器检测
function isUCBrowser() {
const ua = navigator.userAgent.toLowerCase();
return ua.includes('ubrowser');
}
// 直接输出对应的 HTML 标签
if (isUCBrowser()) {
document.write(`
<link rel="stylesheet" href="__JS__/swiper-bundle8.4.7.min.css">
<script type="text/javascript" src="__JS__/swiper-bundle8.4.7.min.js"><\/script>
`);
} else {
document.write(`
<link rel="stylesheet" href="__JS__/swiper-bundle9.4.1.min.css">
<script type="text/javascript" src="__JS__/swiper-bundle9.4.1.min.js"><\/script>
`);
}
</script>
<!-- 你的 jQuery 和其他脚本 -->
<script src="__JS__/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="__JS__/before-after.min.js"></script>
<script type="text/javascript" src="__JS__/large.js"></script>
<script type="text/javascript">
function detectDeviceByResolution() {
// 获取屏幕信息
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;
const aspectRatio = screenWidth / screenHeight;
const pixelDensity = window.devicePixelRatio || 1;
// 计算物理屏幕尺寸(对角线英寸数)
// 注意:此计算依赖浏览器提供准确的 devicePixelRatio
const diagonalPixels = Math.sqrt(
Math.pow(screenWidth, 2) + Math.pow(screenHeight, 2)
);
const diagonalInches = diagonalPixels / pixelDensity / 96;
// 设备类型判断阈值
const isTabletSize = diagonalInches >= 7 && diagonalInches <= 13;
const isLaptopSize = diagonalInches > 13 && diagonalInches <= 17;
const isDesktopSize = diagonalInches > 17;
// 常见平板分辨率模式(非绝对标准)
const isTabletResolution = (
(screenWidth >= 768 && screenWidth <= 1100 && aspectRatio <= 1.7) || // 竖屏或方屏平板
(screenHeight >= 768 && screenHeight <= 1100 && aspectRatio >= 1.5) // 横屏平板
);
// 常见PC/笔记本分辨率模式
const isPcResolution = (
(screenWidth >= 1280 && aspectRatio >= 1.6) || // 宽屏笔记本/桌面
(screenWidth >= 1920) // 高分辨率桌面
);
if (isTabletSize && isTabletResolution) {
return 'tablet';
} else if (isLaptopSize && isPcResolution) {
return 'laptop';
} else if (isDesktopSize && isPcResolution) {
return 'desktop';
} else {
return 'unknown';
}
}
// $(window).ready(function () {
// const deviceType = detectDeviceByResolution();
// if (deviceType=='tablet') {
// window.location.href = '?mtpl=1';
// }
// })
$(window).ready(function () {
if ($(window).width() < 1024) {
var locationURL = new URL(window.location.href);
var mtpl = locationURL.searchParams.get("mtpl");
if (mtpl == null) {
locationURL.searchParams.set("mtpl", "1");
window.location.href = locationURL.href;
}
}
})
</script>
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.f2b211.com/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '2']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<noscript>
<!-- Matomo Image Tracker-->
<img referrerpolicy="no-referrer-when-downgrade" src="https://analytics.f2b211.com/matomo.php?idsite=2&amp;rec=1" style="border:0" alt="" />
<!-- End Matomo -->
</noscript>
{block name="header"}
{include file="public/header"/}
{/block}
{block name="main"}{/block}
{block name="footer"}
{include file="public/footer"/}
{/block}
{block name="script"}{/block}
</body>
</html>