.photo:focus{
filter: saturate(500%);
-webkit-filter: saturate(500%);
-moz-filter: saturate(500%);
-o-filter: saturate(500%);
-ms-filter: saturate(500%);
}
ASKER
Web development includes all aspects of presenting content on intranets and the Internet, including delivery development, protocols, languages and standards, server software, browser clients, databases and multimedia generation.
TRUSTED BY
Just give your images a class and a tabindex:
Open in new window
Then use css to define a new image for your image when it has the focus (i.e. is clicked on).
Open in new window
Then use jquery to remove the focus after a short period of time:
Open in new window
That should probably be a really easy way to do this.