将H5页面转化为图片

Posted 潇影D

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将H5页面转化为图片相关的知识,希望对你有一定的参考价值。

使用html2canvas插件,详情:http://html2canvas.hertzen.com/

实例代码:

html

<div id="capture" style="padding: 10px; background: #f5da55">
    <h4 style="color: #000; ">Hello world!</h4>
</div>

 js

html2canvas(document.querySelector("#capture")).then(canvas => {
    document.body.appendChild(canvas)
});

 

参数配置:http://html2canvas.hertzen.com/configuration


备注:由插件生成的canvas如果引用toDataURL方法会报错

  属于跨域问题

  解决方法:在跨域的服务器上设置header设置为允许跨域请求

access-control-allow-origin: *  access-control-allow-credentials: true  

  

以上是关于将H5页面转化为图片的主要内容,如果未能解决你的问题,请参考以下文章