在移动设备上使用jSignature-一切正常。
我遇到的问题是,在手机上(比如我的Galaxy S4),我想增加签名绘图区域的高度,以便更容易签名。我有传递高度和宽度以及传递CSS类。。。
$('#signature').jSignature({'cssclass': 'signatureWrapper'}).focus();
虽然它似乎增加了周围框的大小,但似乎没有增加签名区域的高度。
谢谢你的建议和指导。
最佳答案
你需要用CSS来定位canvas.jSignature
。
CSS文件
canvas.jSignature { height: 500px; }
看起来您还需要更改
height=""
元素的<canvas>
属性。我在jSignature(http://willowsystems.github.io/jSignature/#/demo/)的演示页面上用Chrome检查器做了这个,它工作得很好。
关于html5 - jSignature-增加签名接受区域的高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17342944/