微信掃描打開APP下載連接提示代碼優化

上一次我發了一篇文章叫「微信打開網址添加在瀏覽器中打開提示」,裏面我發出來了三個代碼,分別是純JSjs+htmljQuery+HTML代碼。今天來一個簡化版帶能夠關閉的按鈕操做。使用的是純JS+HTML+CSS結合的方式,但不要一進入微信就彈出提示它在新瀏覽器中打開,在這個頁面裏面還能夠提交表單查看信息等,只有它點擊應用的連接後,才彈出提示它跳轉後下載。javascript

效果以下:

HTML代碼:

<a id="J_weixin" class="android-btn" href="#"><img src="img/android-btn.png" alt="微信掃描打開APP下載連接提示代碼優化" alt="安卓版下載" /></a>
<div id="weixin-tip"><p><img src="img/live_weixin.png" alt="微信掃描打開APP下載連接提示代碼優化" alt="微信打開"/><span id="close" title="關閉" class="close">×</span></p></div>

CSS代碼:

#weixin-tip{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,0.8);filter:alpha(opacity=80);width:100%;height:100%;z-index:100;}
#weixin-tip p{text-align:center;margin-top:10%;padding:0 5%;position:relative;}
#weixin-tip .close{color:#fff;padding:5px;font:bold 20px/24px simsun;text-shadow:0 1px 0 #ddd;position:absolute;top:0;left:5%;}

JS封裝代碼:

// var is_weixin = (function() { //判斷微信UA
//     var ua = navigator.userAgent.toLowerCase();
//     if (ua.match(/MicroMessenger/i) == "micromessenger") {
//         return true;
//     } else {
//         return false;
//     }
// })();
var is_weixin = (function(){return navigator.userAgent.toLowerCase().indexOf('MicroMessenger') !== -1})();
window.onload = function() {
    var winHeight = typeof window.innerHeight != 'undefined' ? window.innerHeight : document.documentElement.clientHeight; //兼容IOS,不須要的能夠去掉
    var btn = document.getElementById('J_weixin');
    var tip = document.getElementById('weixin-tip');
    var close = document.getElementById('close');
    if (is_weixin) {
        btn.onclick = function(e) {
            tip.style.height = winHeight + 'px'; //兼容IOS彈窗整屏
            tip.style.display = 'block';
            return false;
        }
        close.onclick = function() {
            tip.style.display = 'none';
        }
    }
}

 

演示

打開微信掃描看看效果吧。代碼演示地址css

 

文章來自:http://caibaojian.com/weixin-tip2.htmlhtml

相關文章
相關標籤/搜索