Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 960 Bytes

README.md

File metadata and controls

35 lines (21 loc) · 960 Bytes

Grayscale Image Hover

A simple but eye catching effect to enhance your websites pictues.

Inspired by and based on a great tutorial from webdesignerwall.com.

How to use

Basic example:

window.addEvent('domready', function() {
	new GrayscaleImages('img');
});

The argument can be any css selector or reference to an HtmlImageElement. You should take care that the selector only matches img elements, behavior in other cases is untested.

Class: GrayscaleImages

Syntax

new GrayscaleImages([element, options]);

Arguments

  1. element: (element, string, array) The element(s) to attach the effect to
  2. options: (object, optional) The options object

Options:

  • duration: (int) Duration of the transition from grayscal to color.
  • luminance: (bool) Turn off luminance correction by setting this to false.