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)
})
网友评论