// 禁止使用微信内置浏览器打开网页
// 小透明・宸 2019.1.15
if (navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1) {
var div = document.createElement('div');
div.setAttribute('id', 'fuckWechat');
var style = document.createAttribute("style");
div.setAttributeNode(style);
div.style.position = 'fixed';
div.style.left = '0';
div.style.top = '0';
div.style.width = '100%';
div.style.height = '100%';
div.style.textAlign = 'center';
div.style.backgroundColor = '#f2f2f2';
div.style.zIndex = '2147483647';
var divContent = [
'
',
'',
'',
'',
'
已停止访问该网页',
'
',
'
你正在使用微信打开该网页。微信对部分网页恶意屏蔽,为维护自由上网环境,本页面禁止使用微信打开。',
'
',
'',
'',
' 申请恢复访问',
'
',
''
].join('\n');
div.innerHTML = divContent;
document.getElementsByTagName("body").item(0).appendChild(div);
document.getElementById('fakeWechatStyleButton').addEventListener('touchstart', function () {
fakeWechatStyleButton.style.backgroundColor = '#179b16';
fakeWechatStyleButton.style.color = 'rgba(255, 255, 255, 0.6)';
});
document.addEventListener('touchend', function () {
fakeWechatStyleButton.style.backgroundColor = '#1aad19';
fakeWechatStyleButton.style.color = '#ffffff';
});
}