Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prydie/jQuery-GreyScale-Plugin
A plugin for jQuery convert images to grayscale on the fly and reveal the coloured version on hover
https://github.com/prydie/jQuery-GreyScale-Plugin
Last synced: 16 days ago
JSON representation
A plugin for jQuery convert images to grayscale on the fly and reveal the coloured version on hover
- Host: GitHub
- URL: https://github.com/prydie/jQuery-GreyScale-Plugin
- Owner: prydie
- License: mit
- Created: 2011-08-01T12:15:01.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-05-19T09:13:07.000Z (over 8 years ago)
- Last Synced: 2024-08-01T00:57:11.493Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 59.6 KB
- Stars: 62
- Watchers: 6
- Forks: 44
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
DEPRECIATED
-----------
This plugin is no longer under development the following CSS (in modern browsers) fulfils the same purpose with far greater efficiency... code:: css
img {
filter: grayscale(100%);
}
================
jQuery GreyScale
================
A jQuery plugin for greyscaleing images on the fly and then colouring them on hover.See example.html for a usage.
Tested in IE6-9, Safari, Chrome and FireFox.
Please send bug reports and feature requests to [email protected] or log them in the issue queue on github (https://github.com/Prydie/jQuery-GreyScale-Plugin/issues).
Pull requests are welcome.
Rewrite
=======
The rewrite branch is a full rewrite of the plugin which aims to solve isues with the changes to jQuery since release as well as exposing the internals of the plugin to enable use with your own event handlers.