如何从jSignature插件的CANVAS(签名面板)中删除中线?

*我正在使用libs / jSignature.min.noconflict.js *

http://willowsystems.github.io/jSignature/#/demo/

最佳答案

使用此代码。我在noconflict.html文件中使用了它

// This is the part where jSignature is initialized.
var $sigdiv = $("#signature").jSignature(
{
    'UndoButton':true,
    'background-color': 'transparent',
     'decor-color': 'transparent',
})

07-24 15:47