ofd.js
在使用ofd.js前请务必悉知
目前方案采用:svg及canvas渲染实现,百分百纯前端渲染
效果:
Usage with npm
npm i ofd.js
import {parseOfdDocument, renderOfd} from "ofd.js";
其中ofd传入的file支持本地文件、二进制或者url、screenWidth为屏幕宽度
parseOfdDocument({
ofd: file,
success(res) {
//输出ofd每页的div
const divs = renderOfd(screenWidth, res);
//获取签章div的信息, 具体看demo
for(let ele of document.getElementsBy
1