vue 与qrcodejs2 生成的二维码 logo 居中

2021-01-05 05:29

阅读:1087

标签:高度   内容   style   strong   生成   nim   rem   rom   this   

 代码:
      
      
      
    
 
 
style:
.qrcode{
  display:inline-block;
  position:relative;margin-top: .2rem;
}
.logoimg{
    position:absolute;
    left:50%;
    top:50%;
    width:60px;
    height:60px;
    margin-top:-30px;
    margin-left:-30px;
}
 
 
js:
import QRcode from ‘qrcodejs2‘   //引入
qrcode() {
      this.qrcode = new QRcode(‘qrcode‘, {
        width: 200, // 设置宽度,单位像素
        height: 200, // 设置高度,单位像素
        text: this.QRtext, // 设置二维码内容或跳转地址
        colorDark: this.erweiCodeColor // 二维码的颜色
      })
    }
 

vue 与qrcodejs2 生成的二维码 logo 居中

标签:高度   内容   style   strong   生成   nim   rem   rom   this   

原文地址:https://www.cnblogs.com/wz2018/p/13614725.html


评论


亲,登录后才可以留言!