123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
-
- function isWeixin() {
- var e = navigator.userAgent.toLowerCase();
- if (e.match(/MicroMessenger/i) == "micromessenger") {
- return true
- } else {
- return false
- }
- }
- function closeshare() {
- document.getElementById("share-wx").style.display = "none"
- }
- function closewx() {
- document.getElementById("wx-qr").style.display = "none"
- }
- function addShareWX() {
- var e = document.createElement("div");
- e.id = "share-wx";
- e.onclick = closeshare;
- document.body.appendChild(e);
- var t = document.createElement("p");
- t.style.cssText = "text-align:right;padding-left:10px;";
- e.appendChild(t);
- }
- function addWXQR() {
- var e = document.createElement("div");
- e.style.cssText = "background:rgba(0,0,0,0.8); position:fixed;top:0px; left:0px; width:100%; height:" + document.height + "px; z-index:10000; display:none;";
- e.id = "wx-qr";
- e.onclick = closewx;
- document.body.appendChild(e);
- wxqrP1 = document.createElement("p");
- wxqrP1.style.cssText = "text-align:center;width:220px;color:#f563c7;margin:50px auto 0 auto;font: bold 16px Arial, Helvetica, Microsoft Yahei, 微软雅黑, STXihei, 华文细黑, sans-serif";
- wxqrP1.innerHTML = "分享给朋友一起玩!";
- e.appendChild(wxqrP1);
- }
- if (getCookie("num")) {
- var nn = parseInt(getCookie("num"));
- setCookie("num", ++nn);
- } else {
- setCookie("num", 1);
- }
- function getCookie(name)
- {
- var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
- if(arr=document.cookie.match(reg)) return unescape(arr[2]);
- else return null;
- }
- function setCookie(name, value) {
- var Days = 30;
- var exp = new Date();
- exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
- document.cookie = name + "=" + escape(value) + ";expires" + exp.toGMTString();
- }
-
- function isMobile() {
- return navigator.userAgent.match(/android|iphone|ipod|blackberry|meego|symbianos|windowsphone|ucbrowser/i)
- }
- function isIOS() {
- return navigator.userAgent.match(/iphone|ipod|ios/i)
- }
- var RESOURCE_IMG_PATH = RESOURCE_IMG_PATH || "/vapp/",
- HORIZONTAL = HORIZONTAL || false,
- COVER_SHOW_TIME = COVER_SHOW_TIME || 2e3;
- document.addEventListener("WeixinJSBridgeReady",
- function() {
- if (HORIZONTAL == true) {
- WeixinJSBridge.call("hideToolbar")
- }
- },
- false); (function() {
- function n() {
- window.scroll(0, 0);
- var e;
- if (window.orientation == 0 || window.orientation == 180) {
- e = false
- } else if (window.orientation == -90 || window.orientation == 90) {
- e = true
- }
- if (e == HORIZONTAL) {
- t.style.display = "none"
- } else {
- setTimeout(function() {
- r();
- t.style.width = window.innerWidth + "px";
- t.style.display = "block"
- },
- isIOS() ? 0 : 600)
- }
- if (HORIZONTAL == true && isWeixin() && !isIOS()) {
- WeixinJSBridge.call("hideToolbar")
- }
- }
- function r() {
- e.style.height = window.innerHeight + "px";
- e.style.width = window.innerWidth + "px";
- t.style.height = window.innerHeight + "px"
- }
- if (!isMobile()) return;
- var e = document.createElement("div");
- e.style.cssText = "position:absolute;z-index:1000000;left:0;top:0;background:#6699ff url(" + RESOURCE_IMG_PATH + "cover.jpg) no-repeat center center;background-size: 50%;width:" + window.innerWidth + "px;height:" + Math.max(window.innerHeight, window.document.documentElement.offsetHeight) + "px";
- e.className = "common_cover";
- document.body.appendChild(e);
- setTimeout(function() {
- e.parentNode.removeChild(e)
- },
- COVER_SHOW_TIME);
- document.addEventListener("touchmove",
- function(e) {
- e.preventDefault()
- },
- false);
- var t = document.createElement("div");
- t.className = "common_notice";
- t.style.cssText = "position:absolute;z-index:999999;left:0;top:0;background:#6699ff url(" + RESOURCE_IMG_PATH + "rotate_tip.jpg) no-repeat center center;background-size: 50%;";
- document.body.appendChild(t);
- window.addEventListener("orientationchange", n);
- window.addEventListener("load", n);
- window.addEventListener("scroll", r)
- })();
- document.oncontextmenu = function() {
- return false
- };
- if (isWeixin()) {
- addShareWX()
- } else {
- addWXQR()
- }
- /*if (getCookie("num") != 3){
- window.onbeforeunload=function(){return " "}
- }*/
|