pdf.js/examples/acroforms/index.html

24 lines
639 B
HTML
Raw Normal View History

2011-12-20 11:00:50 +09:00
<!doctype html>
<html>
<head>
<script src="../../node_modules/requirejs/require.js"></script>
2015-02-03 00:12:52 +09:00
2011-12-20 11:00:50 +09:00
<style>
.pdfpage { position:relative; top: 0; left: 0; border: solid 1px black; margin: 10px; }
.pdfpage > canvas { position: absolute; top: 0; left: 0; }
.pdfpage > div { position: absolute; top: 0; left: 0; }
.inputControl { background: transparent; border: 0px none; position: absolute; margin: auto; }
.inputControl[type='checkbox'] { margin: 0px; }
2011-12-20 11:04:16 +09:00
.inputHint { opacity: 0.2; background: #ccc; position: absolute; }
2011-12-20 11:00:50 +09:00
</style>
<script src="forms.js"></script>
2011-12-20 11:00:50 +09:00
</head>
<body>
<div id="viewer"></div>
</body>
</html>