Perspective fade transition

I’m sitting back and thoroughly enjoying how nice the TV dashboard I have created in Perspective looks. And then it struck me that it would be nice to have a smooth transition of the background colors of each card as we cycle from line to line.

I’m wondering if it is possible through CSS3 or some other way to provide animation/transition fades as you would see in powerpoint as you move from slide to slide.

add the following styles to the card.

transition: background-color 1.0s ease
backgroundColor: #FF0000

When you change the background to something different, it will fade in/out to the new color.

3 Likes

Thanks Jae.