微信跳转浏览器提示_微信浏览器中打开提示的三种实现方式
程序员文章站
2022-02-16 11:56:31
...
相信做前端的朋友一定都遇到这种情况的、当你的网页中有直接链接apk下载的时候会没有反映的、是因为在微信内是无法下载软件、手机APP等、那么这个时候一般的解决方案就是、必须要点击右上角三个点、选择“在浏览器中打开”才可以、微信扫描下方的二维码可查看效果
但是很多用户并不知道、只会点击无反应、所以现在流行的做法是、直接判断微信的ua,然后弹出一个遮罩提示用户在浏览器中打开下载、最终的效果图如下
CSS代码
<style type="text/css"> *{ margin:0; padding:0; } a{ text-decoration: none; } img{ max-width: 100%; height: auto; } .weixin-tip{ display: none; position: fixed; left:0; top:0; bottom:0; background: rgba(0,0,0,0.8); filter:alpha(opacity=80); height: 100%; width: 100%; z-index: 100; } .weixin-tip p{ text-align: center; margin-top: 10%; padding:0 5%; } </style>
HTML代码
<div class="weixin-tip"> <p> <img src="live_weixin.png" alt="微信打开"/> </p> </div>
jQuery代码
<script type="text/javascript"> $(window).on("load",function(){ var winHeight = $(window).height(); function is_weixin() { var ua = navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == "micromessenger") { return true; } else { return false; } } var isWeixin = is_weixin(); if(isWeixin){ $(".weixin-tip").css("height",winHeight); $(".weixin-tip").show(); } }) </script>
微信浏览器揭示在浏览器中打开源代码下载链接: 微信提示用浏览器打开 密码: 4qpk