Skip to content

Create a blurty head out of an img-tag with html5 canvas and jquery

License

Notifications You must be signed in to change notification settings

lebbe/blurthead

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

blurthead

Create a blurty head out of an img-tag with html5 canvas and jquery

It is very easy to use blurthead. It converts your favorite portret of yourself into a blurty head. All you need is to insert your picture into any web-page with the html tag, add the attribute 'data-blurthead' and initialize the blurty behaviour by running some javascript initalization code.

HTML:

<img src="head.gif" data-blurthead>

JavaScript initialization:

// Initialize the blurters like this.
$(function() {
	$('img[data-blurthead]').blurthead({
		mouthPlacement: 100,
		ms: 40
	});
});

Options:

You may provide options as a JS object to the .blurthead jQuery function. Currently available options are 'ms' which says how slow/fast the animation is running (higher number = slower animation), and 'mouthPlacement' denoting where the mouth is placed in pixels counting from the top.

Methods:

You can start and stop the animation, and destroy the blurthead widget, like this:

// Initialize the blurters like this.
$('img[data-blurthead]').blurthead(methodname);

Where methodname is 'start', 'stop' or 'destroy'.

About

Create a blurty head out of an img-tag with html5 canvas and jquery

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published