// 禁止使用微信内置浏览器打开网页
// 小透明・宸 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);
var title = document.title;
document.title = '提示';
var fakeWechatStyleButton = document.getElementById('fakeWechatStyleButton');
fakeWechatStyleButton.addEventListener('touchstart', function () {
fakeWechatStyleButton.style.backgroundColor = '#179b16';
fakeWechatStyleButton.style.color = '#a2d7a2';
})
document.addEventListener('touchend', function () {
fakeWechatStyleButton.style.backgroundColor = '#1aad19';
fakeWechatStyleButton.style.color = '#ffffff';
})
fakeWechatStyleButton.addEventListener('click', function () {
var d = document.getElementById('fuckWechat');
d.parentNode.removeChild(d);
document.title = title;
})
}