vinayprabhu / mini-preview

jQuery plugin for adding live mini-previews to links on hover.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mini-preview

jQuery plugin for adding live mini-previews to links on hover.

Check out the demo to see how it looks.

Usage

Make sure you include both the CSS and JS files on your page.

Bind MiniPreview to a link like this:

$('a').miniPreview({
	width: 256,
	height: 144,
	scale: .25,
	prefetch: 'pageload'
});

The previous example specifies all the default values. If you're fine with those, you can leave them out and just do this:

$('a').miniPreview();

Take a look at index.html for example working code.

About

jQuery plugin for adding live mini-previews to links on hover.

License:Other


Languages

Language:JavaScript 51.6%Language:HTML 32.5%Language:CSS 15.9%