一、簡介
Barcode模組管理條碼掃描,提供常見的條碼(二維碼及一維碼)的掃描辨識功能,可呼叫裝置的相機對條碼圖片掃描進行資料輸入。透過plus.barcode可取得條碼碼管理物件。
二、實現的效果
三、實作程式碼
<!doctype html> <html> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <link href="css/mui.min.css" rel="stylesheet" /> <script src="js/mui.min.js"></script> <style type="text/css"> #bcid{ width: 100%; height: 100%; position: absolute; background: #000000; } html, body ,p{ height:100%; width: 100%; } .fbt{ color: #0E76E1; width: 50%; background-color: #ffffff; float: left; line-height: 44px; text-align: center; } </style> </head> <body> <header class="mui-bar mui-bar-nav" style="background-color: #ffffff;"> <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a> <h1 class="mui-title" style="color: #0E76E1;">物品二维码扫描</h1> <span class="mui-icon mui-icon-spinner-cycle mui-spin mui-pull-right" id="turnTheLight"></span> </header> <p id="bcid"> <!--盛放扫描控件的p--> </p> <p class="mui-bar mui-bar-footer" style="padding: 0px;"> <p class="fbt" onclick="scanPicture();">从相册选择二维码</p> <p class="fbt mui-action-back">取 消</p> </p> <script type="text/javascript"> scan = null;//扫描对象 mui.plusReady(function () { mui.init(); startRecognize(); }); function startRecognize(){ try{ var filter; //自定义的扫描控件样式 var styles = {frameColor: "#29E52C",scanbarColor: "#29E52C",background: ""} //扫描控件构造 scan = new plus.barcode.Barcode('bcid',filter,styles); scan.onmarked = onmarked; scan.onerror = onerror; scan.start(); //打开关闭闪光灯处理 var flag = false; document.getElementById("turnTheLight").addEventListener('tap',function(){ if(flag == false){ scan.setFlash(true); flag = true; }else{ scan.setFlash(false); flag = false; } }); }catch(e){ alert("出现错误啦:\n"+e); } }; function onerror(e){ alert(e); }; function onmarked( type, result ) { var text = ''; switch(type){ case plus.barcode.QR: text = 'QR: '; break; case plus.barcode.EAN13: text = 'EAN13: '; break; case plus.barcode.EAN8: text = 'EAN8: '; break; } alert( text + " : "+ result ); }; // 从相册中选择二维码图片 function scanPicture() { plus.gallery.pick(function(path){ plus.barcode.scan(path,onmarked,function(error){ plus.nativeUI.alert( "无法识别此图片" ); }); },function(err){ plus.nativeUI.alert("Failed: "+err.message); }); } </script> </body> </html>
三、做的過程中遇見的問題
a,p佔滿整個頁
1,此p寬高皆為100%,父級元素的高度也為此(依次類推直至根節點),或此p的position為absolute;
2,可使用js動態設定頁面寬高
var height = window.innerHeight + 'px';//获取页面实际高度 var width = window.innerWidth + 'px'; document.getElementById("bcid").style.height= height; document.getElementById("bcid").style.width= width;
b,掃描控制有上下邊距
採用填滿黑色來淡化視覺上面的差異,未實際解決,(如果你解決的話,歡迎留言,謝謝)
相關推薦:
以上是MUI框架使用HTML5實現二維碼掃描功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!