|
@@ -14,16 +14,142 @@
|
|
<title>2022年全国大众创业万众创新活动周云展览</title>
|
|
<title>2022年全国大众创业万众创新活动周云展览</title>
|
|
<script>
|
|
<script>
|
|
var _hmt = _hmt || [];
|
|
var _hmt = _hmt || [];
|
|
- (function() {
|
|
|
|
|
|
+ (function () {
|
|
var hm = document.createElement("script");
|
|
var hm = document.createElement("script");
|
|
- hm.src = "https://hm.baidu.com/hm.js?a1af463bc2692b6861ac40d2e024b07d";
|
|
|
|
- var s = document.getElementsByTagName("script")[0];
|
|
|
|
|
|
+ hm.src = "https://hm.baidu.com/hm.js?de470ac542dcebd70489a7ce3e1705c3";
|
|
|
|
+ var s = document.getElementsByTagName("script")[0];
|
|
s.parentNode.insertBefore(hm, s);
|
|
s.parentNode.insertBefore(hm, s);
|
|
})();
|
|
})();
|
|
</script>
|
|
</script>
|
|
|
|
+
|
|
|
|
+ <style>
|
|
|
|
+ .broswertips {
|
|
|
|
+ position: fixed;
|
|
|
|
+ z-index: 99999999;
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ background-image: url(./tipsimages/bg.png);
|
|
|
|
+ display: none;
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
+ background-color: #10337f;
|
|
|
|
+ background-size: 100% auto;
|
|
|
|
+ background-position: bottom left;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con {
|
|
|
|
+ width: 75%;
|
|
|
|
+ margin: 0 auto;
|
|
|
|
+ padding-top: 0;
|
|
|
|
+ color: #fff;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 50%;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con .h-title {
|
|
|
|
+ width: 100%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con .h-title>img {
|
|
|
|
+ width: 90%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con .tunits {
|
|
|
|
+ width: 60%;
|
|
|
|
+ margin: 40px auto 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con>p {
|
|
|
|
+ font-size: 28px;
|
|
|
|
+ margin-top: 20vh;
|
|
|
|
+ font-weight: normal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .broswertips .h-con>p>span {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ margin-right: 60px;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
</head>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<body>
|
|
|
|
+
|
|
|
|
+ <div class="broswertips" id="broswertips">
|
|
|
|
+ <div class="h-con">
|
|
|
|
+ <div class="h-title">
|
|
|
|
+ <img src="./tipsimages/title.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ <p>本展览采用三维全景技术呈现,不兼容IE浏览器访问,<br /> 建议使用谷歌、360极速浏览器、火狐等主流浏览器。</p>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ <script>
|
|
|
|
+ function versions() {
|
|
|
|
+ var u = window.navigator.userAgent
|
|
|
|
+ var uLowCase = u.toLowerCase()
|
|
|
|
+
|
|
|
|
+ return {
|
|
|
|
+ userAgent: u,
|
|
|
|
+ // IE内核
|
|
|
|
+ trident: u.indexOf('Trident') > -1,
|
|
|
|
+ // opera内核
|
|
|
|
+ presto: u.indexOf('Presto') > -1,
|
|
|
|
+ // 苹果、谷歌内核
|
|
|
|
+ webKit: u.indexOf('AppleWebKit') > -1,
|
|
|
|
+ // 火狐内核
|
|
|
|
+ gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') === -1,
|
|
|
|
+ // 是否为移动终端 / Tablets use desktop version
|
|
|
|
+ mobile: (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) && !(/Tablet|iPad/i.test(navigator.userAgent)),
|
|
|
|
+ // ios终端
|
|
|
|
+ ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
|
|
|
|
+ // android终端或者uc浏览器
|
|
|
|
+ android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
|
|
|
|
+ // 是否为iPhone或者安卓QQ浏览器
|
|
|
|
+ iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1,
|
|
|
|
+ // 是否为iPad
|
|
|
|
+ iPad: u.indexOf('iPad') > -1,
|
|
|
|
+ // 是否为web应用程序,没有头部与底部
|
|
|
|
+ webApp: u.indexOf('Safari') === -1,
|
|
|
|
+ // 是否为微信浏览器
|
|
|
|
+ weixin: ~u.indexOf('MicroMessenger'),
|
|
|
|
+ // 火狐内核版本
|
|
|
|
+ firefoxCore: uLowCase.match(/firefox\/([\d.]+)/),
|
|
|
|
+ // chrome内核版本
|
|
|
|
+ chromeCore: uLowCase.match(/chrome\/([\d.]+)/),
|
|
|
|
+ // webkit内核版本
|
|
|
|
+ webkitCore: uLowCase.match(/applewebkit\/([\d.]+)/),
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ var broswer = versions()
|
|
|
|
+ var dommmm = document.getElementById('broswertips')
|
|
|
|
+
|
|
|
|
+ if (broswer.trident) {
|
|
|
|
+ dommmm.style.display = 'block'
|
|
|
|
+ }
|
|
|
|
+ // 火狐
|
|
|
|
+ else if (broswer.gecko) {
|
|
|
|
+ var version = broswer.firefoxCore[1].split(".")[0]
|
|
|
|
+ if (Number(version) < 80) {
|
|
|
|
+ dommmm.style.display = 'block'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // 谷歌
|
|
|
|
+ else if (broswer.webKit) {
|
|
|
|
+ var version = broswer.chromeCore[1].split(".")[0]
|
|
|
|
+ if (Number(version) < 69) {
|
|
|
|
+ dommmm.style.display = 'block'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ </script>
|
|
|
|
+
|
|
<script src="<%= VUE_APP_STATIC_DIR %>/js/lib/jquery-2.1.1.min.js" class="build keep"></script>
|
|
<script src="<%= VUE_APP_STATIC_DIR %>/js/lib/jquery-2.1.1.min.js" class="build keep"></script>
|
|
<div id="app"></div>
|
|
<div id="app"></div>
|
|
</body>
|
|
</body>
|