southbeach
Programmer
Looking for means to add more "wow" to a site I am working on and thought that using transition effects will be a good place to start.
For instance, one of the pages is a data grid where content is shown w/in a layer. The layer could have any number of rows or blocks, each representing an individual document.
I would like to use something like
So, given the above code, using
I am expecting to see the block transition from default color to #222 based on duration value.
This is not working for me. What am I doing wrong?
Thank you all for your help!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
For instance, one of the pages is a data grid where content is shown w/in a layer. The layer could have any number of rows or blocks, each representing an individual document.
I would like to use something like
Code:
.rollsmooth:hover {
transition-property: background-color;
transition-duration: 3s;
background-color: #222;
}
So, given the above code, using
Code:
<div class="rollsmooth">
Some text and content here ...
</div>
I am expecting to see the block transition from default color to #222 based on duration value.
This is not working for me. What am I doing wrong?
Thank you all for your help!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.