I've been struggling with this issue for days now and haven't been able to find a solution. I've delved into extensive documentation and scoured every corner of the internet, including some relevant stackoverflow discussions such as: Greyscale Background Css Images
In essence, I am attempting to create both a colored version and a grayscale version of the sidebars, feathers, text, and Eagle in the center. Upon hovering over any sidebar, these elements should transition to their colored versions, and revert back to grayscale upon mouseout. Despite my efforts, I have only managed to achieve two different outcomes.
For Version 1, I utilized two <div>
elements for each image. View example here: http://fiddle.jshell.net/zPGwY/
Version 2 involved using a single <div>
for each image, but I encountered difficulties with achieving the same smooth fadeIn/fadeOut effect as in Version 1. The transition is more noticeable, with the eagle briefly disappearing before the colored version fades in. It's likely that my jQuery implementation is subpar for this version, so feel free to make adjustments.
View it here: http://fiddle.jshell.net/gB6Sx/5/
My goal is to utilize the second version of HTML and CSS while replicating the smooth transitions of Version 1. When hovering over any sidebar, I want the eagle, feathers, text, and sidebar itself to transition to color. On mouseout, everything should return to grayscale.
If anyone can provide assistance with this, I would greatly appreciate it.