I want to change the background color of the page when one hovers over a button/div tag using only CSS3 transitions. I want the color to come gradually and hence would like to use a transition effect, but I don't know how to relate the background color of the page to a hover event on a div. Can someone please help me with my code ? Thank You
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
This is not currently possible in CSS3. In the future (CSS4?), you'll be able to do it as follows:
Note the Update (using jQuery): CSS:
Javascript:
Here's the fiddle: http://jsfiddle.net/mWY88/1/ For maximum efficiency, you should cache your selectors. |
|||||||||
|
|
In fact, you can change the body background-color very easily with CSS3 transition animation like I'm doing it here. I got the logic from here. |
|||
|
|