Sketchify手绘风格数据可视化工具 v1.0免费下载
【资源属性】:资源名称:Sketchify手绘风格数据可视化工具 v1.0
资源大小:1.28MB
资源类别: 源码下载 》 软件开发
更新时间:2023-06-08
资源语言:简体中文
授权方式:免费下载
使用平台:Windows/Linux/Mac
下载地址:下载地址
Sketchify是一个js工具,可将任何包含SVG图形的DOM元素转换为手绘风格的效果。它基于Rough.js。
Sketchify用法:
将由svg组成的现有图形转换为草图模式。运行以下代码:
const option = {
fillStyle: 'hachure',
roughness: 1,
bowing: 1,
chartType: 'highcharts',
};
// container is the root dom element that contains related graph svg
const handler = Sketchifier(container, option);
handler.handify();
// call restore will turn the graph back to original one
handler.restore();
有关fillStyle,roughness和bowing的选项,请参考roughjs api文档。