国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > HTML > 正文

基于MUI框架使用HTML5實現的二維碼掃描功能

2024-08-26 00:20:27
字體:
來源:轉載
供稿:網友

Barcode的一個實現案例

一、簡介

        Barcode模塊管理條碼掃描,提供常見的條碼(二維碼及一維碼)的掃描識別功能,可調用設備的攝像頭對條碼圖片掃描進行數據輸入。通過plus.barcode可獲取條碼碼管理對象。

二、實現的效果

mui框架,二維碼掃描,html5,二維碼,掃描

三、實現 代碼

<!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 ,div{              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>      <div id="bcid">              <!--盛放掃描控件的div-->              </div>      <div class="mui-bar mui-bar-footer" style="padding: 0px;">          <div class="fbt" onclick="scanPicture();">從相冊選擇二維碼</div>          <div class="fbt mui-action-back">取  消</div>      </div>      <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,div占滿整個頁面

       1,此div寬高都為100%,父級元素的高度也為此(依次類推直至根節點),或者此div的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實現的二維碼掃描功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VeVb武林網網站的支持!

 

注:相關教程知識閱讀請移步到HTML教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 城步| 湘潭县| 甘德县| 杭州市| 临海市| 德庆县| 西吉县| 康平县| 米脂县| 原平市| 延川县| 民和| 新郑市| 楚雄市| 曲麻莱县| 北宁市| 金寨县| 铜山县| 剑河县| 长泰县| 女性| 黄冈市| 儋州市| 凌源市| 大关县| 乌拉特中旗| 双牌县| 抚松县| 牡丹江市| 宁都县| 安丘市| 邵武市| 天祝| 西华县| 乌兰浩特市| 武邑县| 绿春县| 喀喇沁旗| 县级市| 安远县| 尤溪县|