You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th=http://www.thymeleaf.org>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport"
|
|
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>表单设计器</title>
|
|
<link rel="stylesheet" href="./layui/css/layui.css"/>
|
|
<link rel="stylesheet" href="./ayq/modules/HandwrittenSignature.css"/>
|
|
</head>
|
|
|
|
<body class="layui-layout-body">
|
|
<div id="formdesigner">
|
|
|
|
</div>
|
|
<script type="text/javascript" src="./layui/layui.js"></script>
|
|
<script>
|
|
var render;
|
|
layui.config(
|
|
{
|
|
base: './ayq/modules/',
|
|
version: true
|
|
}).use(['layer', 'HandwrittenSignature'], function () {
|
|
var handwrittenSignature = layui.HandwrittenSignature;
|
|
var $ = layui.jquery;
|
|
render = handwrittenSignature.render({
|
|
elem: '#formdesigner'
|
|
, defaultColor: "rgba(0, 0, 0, 1)"
|
|
, label: "用户亲笔签名"
|
|
, signLineWidth: 3
|
|
, isGenerateImg: true
|
|
});
|
|
});
|
|
|
|
function getCanvasData() { //获取选中数据
|
|
return render.getCanvasData();
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |