qrcode.js实现二维码生成---带边框解决方案

以下为解决方案, 具体实现方式:

方案一:

因为在网上找了很久,没有找到可以直接在qrcode.js中实现的方法,找到一个,结果是CSDN要下载的,没办法,然后就想其他办法实现,利用俩个div的嵌套,在parent中设置白色背景,在child中放置qrcode,实现伪边框。

另外,我的parent和child因为还有其他的div的嵌套,未尝试,直接做是否可以,有需求的可以找其他的模板。这里只是有个解决办法。

<div class="parent">
    <div class="child">
        <div id="qrcode">
        </div>
    </div>
</div>
var qrcode = new QRCode('qrcode', {
	    		  text: '${picpath!}',
	    		  width: 456,
	    		  height: 456,
	    		  colorDark : '#000000',
	    		  colorLight : '#ffffff',
	    		  correctLevel : QRCode.CorrectLevel.H
	    		});
<script type="text/javascript" src="addon/js/jquery-2.2.3.min.js"></script>
<script src="addon/js/qrcode.js"></script>
.parent {
          width:250px; 
          height:250px; 
          /* border:2px solid #000; */
          display: inline-grid;
          justify-content:center;
          align-items:center;
          background-color: white;    
}
 .child {
            width:185px;
            height:185px;
            margin: auto;  
            /* position: absolute;  */ 
            top: 0; left: 0; bottom: 0; right: 0; 
            justify-content:center;
}

 

方案二:

不用parent,child。给div设置边框就行

<div id="qrcode" style="width: 195px; margin: 0px auto; border: 25px solid rgb(255, 255, 255);">
</div>

 

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值