以下为解决方案, 具体实现方式:
方案一:
因为在网上找了很久,没有找到可以直接在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>