0.0.1 • Published 5 years ago

print_html_js v0.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

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 --save
yarn add print_html_js

When 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

argumentstypedefault
domelementOrSelector-

Options

argumentstypedefault
devBooleanfalse
stylestring''
printFrameIdstring'print-html-id'

Please make sure printFrameId only one in this page

Suport Browser

Chrome | Firefox | IE | Edge | Safari

0.0.1

5 years ago