我使用html2canvas生成画布的图像,背景它与firefox工作得很好但是在chrome中背景是垂直拉伸的,我不知道它有什么问题。
这是我的小提琴链接
代码
html2canvas(document.getElementById('DBackgroundContainer'), {
allowTaint: true,
taintTest: false,
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
})
答案 0 :(得分:0)
问题是:
background-size: 547px auto;
出于某些原因,在Chrome中,html2canvas不能" 547px auto" (或" 547px"单独就此而言)。声明两个背景大小的部分,你会发现它有效。
我现在正在提交错误报告,希望它得到修复,但现在你可以让它再次运行。