在IE Html2canvas中,图像文本重叠

时间:2018-06-18 15:28:24

标签: javascript jquery html css html2canvas

使用html2canvas我已经在页面中捕获了DIV,在图像中图像的内容重叠。图像中的文本之间没有空格。在chrome和FF中它工作正常。

JS

window.takeScreenShot = function() {
       html2canvas(document.getElementById('target')).then(canvas => {
         document.body.appendChild(canvas)
       });
    }

HTML

window.takeScreenShot = function() {
       html2canvas(document.getElementById('target')).then(canvas => {
         document.body.appendChild(canvas)
       });
    }

CSS

#target{
      width:300px;
      height:200px;
      background:blue;
      color:white;
      padding:10px;
    }

    button{
      display:block;
      height:20px;
      margin-top:10px;
      margin-bottom:10px;
  }

JSFiddle

有没有办法让它在没有合并的情况下在IE中运行

0 个答案:

没有答案