Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Hello Rod,
on your website you describe how to use CSS filters for thumbnail hover effects. I want to make it in style the thumbnails are gray and change to colored thumbnails on mouse over. Is this possible?
Greetings
Uwe
Greetings from Germany
Uwe
CE4 Web Publishing Bundle & Stage
Offline
yep, see: http://community.theturninggate.net/top … ouse-over/
(which is where the idea for the blog post came from)
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Hello Rod,
I make it like this:
/*-------for standard grid-------*/
.the-grid img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
.the-grid img:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
and it works fine.
Last edited by megalumen (2015-10-08 22:23:26)
Greetings from Germany
Uwe
CE4 Web Publishing Bundle & Stage
Offline
that's the solution.
I thought about adding that twist to the blog post yesterday. Maybe I'll go do that now.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1