久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

vue 生成二維碼+截圖

 路人甲Java 2021-10-11

鏈接生成二維碼

1.npm安裝

npm install --save qrcodejs2

2.引入

import QRCode from 'qrcodejs2'

3.生成二維碼

new QRCode('qrcode', { // 傳入容器id

  text: url, // 鏈接(必填)

  width: 200, // 寬(默認(rèn)256px)

  height: 200, // 高(默認(rèn)256px)

  colorLight: '#F1F1F1' // 背景色

  colorDark: '#F00', // 前景色

  correctLevel: QRCode.CorrectLevel.L // 二維碼可辨識(shí)度(L,M,Q,H)

})

4.代碼演示:

.qrcodeBox{
  width: 296px;
  height: 296px;
  padding: 20px;
  background: #F1F1F1;
  transform-origin: 0 0;
}
CSS
<div class="qrcodeBox" :style="`transform: scale(${scale});`">
  <div id="qrcode"></div>
</div>
HTML
// 計(jì)算倍數(shù)1.08rem/7.5rem
this.scale = document.body.clientWidth * 108 / 750 / 296

// 屏蔽下一行eslint報(bào)錯(cuò) 
// eslint-disable-next-line
new QRCode('qrcode', { // 容器id
  text: location.href,
  colorLight: '#F1F1F1',
  correctLevel: QRCode.CorrectLevel.L
})
JS

 

截圖

1.npm安裝

npm install [email protected] // 指定安裝版本最新版不支持IOS13

2.引入

import html2canvas from 'html2canvas'

3.截圖

html2canvas(this.$refs.imageDom, // 傳入容器ref值

  {

    scale: 2, // 縮放倍數(shù)

    logging: false, // 取消調(diào)試

    useCORS: true,  // 用CORS從服務(wù)器加載映像

    allowTaint: false, // 允許跨域

    proxy: 'url' // 跨域地址

  }

).then(canvas => {

  this.imgUrl = canvas.toDataURL('image/png') // 生成base64圖片路徑

}

4.代碼演示:

.image-box{ // 隱藏截圖模板方案
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-100%,0);
  z-index: -1;
}
CSS
<div class="image-box" ref="imageDom">內(nèi)容,,不支持object-fit屬性,,請(qǐng)用background-size代替</div>
HTML
// 截圖時(shí)容器置頂
window.pageYoffset = 0
document.documentElement.scrollTop = 0
document.body.scrollTop = 0
// 截圖
html2canvas(this.$refs.imageDom, { scale: 2, logging: false, useCORS: true, allowTaint: false, proxy: 'https://cdn.' }).then(canvas => {
  // 設(shè)置圖片:src="imgUrl"
  this.imgUrl = canvas.toDataURL('image/png')
})
JS

 

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多