html2canvas html转base64图片

2019-12-27  本文已影响0人  huanghaodong
4faaf834970a304e99d81614dcc8a786cb175c98.gif
html2canvas($('#captureId')[0], {
       useCORS:true,
       logging:false,
       y: 0, //  决绝竖向滚动条时,出现空白区域
       width:$('#captureId').width(),//设置canvas尺寸与所截图尺寸相同,防止白边
       height:$('#captureId').height(),//防止白边
         }).then(function (canvas) {
       var img = new Image()
       img.src = canvas.toDataURL('image/jpeg')
             console.log(img.src)
       img.style.cssText += 'position:absolute;width:100%;left:0;top:0;opacity: 0;z-index: 20;'
       $('body').append(img)
     })
上一篇下一篇

猜你喜欢

热点阅读