HTML5打開手機(jī)掃碼技巧及優(yōu)缺點(diǎn)_html5圖文說明教程技巧
發(fā)表時(shí)間:2024-05-10 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要介紹了HTML5打開手機(jī)掃碼功能及優(yōu)缺點(diǎn)的相關(guān)HTML5資料,對(duì)HTML5感興趣的朋友可以參考下1.解決的問題:1.能夠在微博客戶端呼起攝像頭掃描二維碼并且解析;2.能夠在原生瀏覽器和微信客戶端中掃描二維碼并且解析;2.優(yōu)點(diǎn):web端或者是 h5端可以直接完成掃碼的工作;3.缺點(diǎn):圖片...
這篇文章主要介紹了HTML5打開手機(jī)掃碼功能及優(yōu)缺點(diǎn)的相關(guān)HTML5資料,對(duì)HTML5感興趣的朋友可以參考下
1.解決的問題:
1.能夠在微博客戶端呼起攝像頭掃描二維碼并且解析;
2.能夠在原生瀏覽器和微信客戶端中掃描二維碼并且解析;
2.優(yōu)點(diǎn):
web端或者是 h5端可以直接完成掃碼的工作;
3.缺點(diǎn):
圖片不清晰很容易解析失敗(拍照掃描圖片需要鏡頭離二維碼的距離很近),相對(duì)于 native 呼起的攝像頭解析會(huì)有1-2秒的延時(shí)。
說明:
此插件需要配合zepto.js 或者 jQuery.js使用
使用方法:
1.在需要使用的頁面按照下面順序引入lib目錄下的 js 文件
<script src="lib/zepto.js"></script>
<script src="lib/qrcode.lib.min.js"></script>
<script src="lib/qrcode.js"></script>
2.自定義按鈕的 html 樣式
為自定義的按鈕添加自定義屬性,屬性名稱為node-type
為 input 按鈕添加自定義的屬性, 屬性名稱為node-type
因?yàn)樵摬寮枰褂?code><input type="file" /> ,該 html 結(jié)構(gòu)在網(wǎng)頁上面是有固定的顯示樣式,為了能夠自定義按鈕樣式,我們可以按照下面的示例代碼結(jié)構(gòu)嵌套代碼
<p>
<p class="qr-btn" node-type="qr-btn">掃描二維碼1
<input node-type="jsbridge" type="file" name="myPhoto" value="掃描二維碼1" />
</p>
</p>
然后設(shè)置 input 按鈕的 css 隱藏按鈕,比如我使用的是屬性選擇器
input[node-type=jsbridge]{
display:none;
}
這里我們只需要按照自己的需要定義class="qr-btn"的樣式即可。
3.在頁面上初始化 Qrcode 對(duì)象
//初始化掃描二維碼按鈕,傳入自定義的 node-type 屬性
$(function() {
Qrcode.init($('[node-type=qr-btn]'));
});
主要代碼解析
(function($) {
var Qrcode = function(tempBtn) {
var _this_ = this;
var isWeiboWebView = /weibo/.test(navigator.userAgent);
if (isWeiboWebView) {
if (window.WeiboJSBridge) {
_this_.bridgeReady(tempBtn);
} else {
document.addEventListener('WeiboJSBridgeReady', function() {
_this_.bridgeReady(tempBtn);
});
}
} else {
_this_.nativeReady(tempBtn);
}
};
Qrcode.prototype = {
nativeReady: function(tempBtn) {
$('[node-type=jsbridge]',tempBtn).on('click',function(e){
e.stopPropagation();
});
$(tempBtn).bind('click',function(e){
$(this).find('input[node-type=jsbridge]').trigger('click');
});
$(tempBtn).bind('change', this.getImgFile);
},
bridgeReady: function(tempBtn) {
$(tempBtn).bind('click', this.weiBoBridge);
},
weiBoBridge: function() {
window.WeiboJSBridge.invoke('scanQRCode', null, function(params) {
//得到掃碼的結(jié)果
$('.result-qrcode').append(params.result + '<br/>');
});
},
getImgFile: function() {
var _this_ = this;
var inputDom = $(this).find('input[node-type=jsbridge]');
var imgFile = inputDom[0].files;
var oFile = imgFile[0];
var oFReader = new FileReader();
var rFilter = /^(?:image\/bmp image\/cis\-cod image\/gif image\/ief image\/jpeg image\/jpeg image\/jpeg image\/pipeg image\/png image\/svg\+xml image\/tiff image\/x\-cmu\-raster image\/x\-cmx image\/x\-icon image\/x\-portable\-anymap image\/x\-portable\-bitmap image\/x\-portable\-graymap image\/x\-portable\-pixmap image\/x\-rgb image\/x\-xbitmap image\/x\-xpixmap image\/x\-xwindowdump)$/i;
if (imgFile.length === 0) {
return;
}
if (!rFilter.test(oFile.type)) {
alert("選擇正確的圖片格式!");
return;
}
oFReader.onload = function(oFREvent) {
qrcode.decode(oFREvent.target.result);
qrcode.callback = function(data) {
//得到掃碼的結(jié)果
$('.result-qrcode').append(data + '<br/>');
};
};
oFReader.readAsDataURL(oFile);
},
destory: function() {
$(tempBtn).off('click');
}
};
Qrcode.init = function(tempBtn) {
var _this_ = this;
tempBtn.each(function() {
new _this_($(this));
});
};
window.Qrcode = Qrcode;
})(window.Zepto ? Zepto : jQuery);
總結(jié)
以上所述是小編給大家介紹的HTML5打開手機(jī)掃碼功能及優(yōu)缺點(diǎn),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)PHP中文網(wǎng)的支持!
相關(guān)推薦:
html5喚起app的方法
用CSS3優(yōu)化HTML5表單的步奏
幾個(gè)很好用的HTML5移動(dòng)開發(fā)框架
以上就是HTML5打開手機(jī)掃碼功能及優(yōu)缺點(diǎn)_html5教程技巧的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。