1.0.6 • Published 8 years ago

upload-preview v1.0.6

Weekly downloads
27
License
MIT
Repository
github
Last release
8 years ago

preview.js

npm lisence

A light and easy use plugin for showing a preview before you upload image.

Usage

1. Install preview.js

npm install upload-preview and test it use npm test if you want.

or

simply include <script src="preview.js"></script>

2. Use it

preview.listen('#uploader');

for example

<input id="uploader" type="file">
<div id="preview"></div>

<script src="preview.js"></script>
<script>
preview.config({ prvBox:'preview' })
	       .listen('#uploader');
</script>

Ps: You can put preview box any where just give it a class or id.

show

More configurations

You can use config() to customalize your preview box.

<script>
preview.config({
    prvBox: 'preview',
    width: 200,
    height: 200,
    isAbsPosition: true
}).listen('#uploader');
</script>

Attribute isAbsPostion means whether to use absolute positioning(set it 'true' to have higher a performance but make the preview box to be a absolute position box).

welcome pr to improve this project & enjoy it.

LISENCE

MIT

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago