html:
点击右上角选择在浏览器中打开

css:.openInBrowser {
width: 100vw;
height: 25vw;
background: #333333;
display: none;
color: #fff;
font-size: 4vw;
line-height: 25vw
}
.openInBrowser img {
width: 9.2vw;
height: 9.333333333333333vw;
margin-left: 7vw;
margin-top: 5.5vw;
float: left;
}
js:
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == “micromessenger”) {
return true;
} else {
return false;
}
}
var isWeixin = is_weixin();
$(’#downloadButton’).click(function () {
if (isWeixin) {
$(’.openInBrowser’).css(‘display’, ‘block’)
}
})
效果图: