0.0.1 • Published 6 years ago
print_html_js v0.0.1
Introduction
a mini tool for print html page with browser.
Installation
You can download the latest version of print_html_js.js from the GitHub releases or use the npm.
To install via npm:
npm install print_html_js --saveyarn add print_html_jsWhen installing via npm or yarn, import the library into your project:
import print from 'print_html_js'Use
<html>
<body>
<div id="print">print this</div>
<script>
// const print = document.querySelector('#print');
// const print_html_js = new Print_html_js(print);
// or
const printHtml = new PrintHtml('#print'); // you can add options: {dev: true} enable print css debugger
printHtml.print();
</script>
</body>
</html>Detail
accept two arguments elementOrSelector and options
elementOrSelector
| arguments | type | default |
|---|---|---|
| dom | elementOrSelector | - |
Options
| arguments | type | default |
|---|---|---|
| dev | Boolean | false |
| style | string | '' |
| printFrameId | string | 'print-html-id' |
Please make sure printFrameId only one in this page
Suport Browser
Chrome | Firefox | IE | Edge | Safari
0.0.1
6 years ago