32 lines
412 B
Plaintext
32 lines
412 B
Plaintext
/**
|
|
* 手写签名用
|
|
*/
|
|
.container {
|
|
top: 10%;
|
|
left: 10%;
|
|
width: 100%;
|
|
height: 50vh;
|
|
}
|
|
|
|
.sigContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
cursor: auto;
|
|
}
|
|
|
|
.sigPointer {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
cursor: url("./signPen/signPen.png"),Crosshair;
|
|
}
|
|
|
|
.sigPad {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #fff;
|
|
}
|