經過掃描二維碼下載APP已成爲一個很是方便的經過掃描二維碼下載APP已成爲一個你們經常使用且很是方便的方式,微信也成爲掃描二維碼重要的工具,可是不少用戶用微信掃描後會提示「已中止訪問網頁」,這是由於微信把你的連接攔截了,微信scheme接口會對含APK和IOS文件的連接進行屏蔽,因此用戶在微信中沒法打開。php
此時就須要用戶在微信內不管是直接打開連接仍是識別二維碼都能直接下載app。這個功能的實現須要對app的php代碼進行相關的處理,下面給你們講解一下這個功能的實現的方式和效果。html
實現教程:http://www.zjychina.cnios
功能實現後ios系統可在微信內直接下載app,安卓則自動跳轉瀏覽器下載。編程
1. App Store應用實現效果瀏覽器
2. 企業版app實現效果微信
3. 安卓用戶則自動打開手機瀏覽器下載app。app
代碼編程工具
HTML代碼spa
var ua = navigator.userAgent;orm
var isWeixin = !!/MicroMessenger/i.test(ua);
CSS代碼
1 #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;}
2 #weixin-tip p{text-align:center;margin-top:10%;padding:0 5%;position:relative;}
3 #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封裝代碼
1 var is_weixin = (function(){return navigator.userAgent.toLowerCase().indexOf(‘micromessenger’) !== -1})();
2 window.onload = function() {
3 var winHeight = typeof window.innerHeight != ‘undefined’ ? window.innerHeight : document.documentElement.clientHeight; //兼容IOS,不須要的能夠去掉
4 var btn = document.getElementById(‘J_weixin’);
5 var tip = document.getElementById(‘weixin-tip’);
6 var close = document.getElementById(‘close’);
7 if (is_weixin) {
8 btn.onclick = function(e) {
9 tip.style.height = winHeight + ‘px’; //兼容IOS彈窗整屏
10 tip.style.display = ‘block’;
11 return false;
12 }
13 close.onclick = function() {
14 tip.style.display = ‘none’;
15 }
16 }
17 }