40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<title>贵族规则</title>
|
|
|
|
<link rel="stylesheet" href="../../common/css/reset.css">
|
|
<!-- <link rel="stylesheet" href="./style/introduction-patrician.css"> -->
|
|
<style>
|
|
body{
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<img src="./images/patrician.png" alt="" class="img">
|
|
<script src="../../common/js/flexible.js"></script>
|
|
<script src="../../common/js/jquery-3.2.1.min.js"></script>
|
|
<script src="../../common/js/common2.js"></script>
|
|
<script>
|
|
let browser = checkVersion()
|
|
getInfoFromClient()
|
|
if (browser.app) {
|
|
if (browser.android) {
|
|
let channel = JSON.parse(pubInfo.deviceInfo).channel
|
|
if (channel.indexOf('toutiao') != -1 || channel.indexOf('kuaishou') != -1) {
|
|
$('.img').attr('src', './images/patrician-yy.png')
|
|
}
|
|
}
|
|
}
|
|
setTimeout(() => {
|
|
$('body').show()
|
|
}, 0)
|
|
</script>
|
|
</body>
|
|
|
|
</html> |