标签: javascript html twitter-bootstrap html2canvas
您好我试图在html2canvas的帮助下打印带有一些图标的div列表。
见上面是我的输入图片。
但是我得到了这个输出。请帮助我,如果有的话
['A'] ['B', 'C'] ['D', 'E', 'F'] ['G', 'H', 'I']
.icon-circle:before { content: "\e941"; }
有任何解决方案
答案 0 :(得分:1)
最后在html2canvas的新版本1.1中,我得到了解决方案 #1001 。
以下是 fiddle
window.takeScreenShot = function() { html2canvas(document.getElementById("target"), { width:320, height:220 }).then(function (canvas) { document.body.appendChild(canvas); }); }