Greetings everyone. I've been experimenting with CSS3 perspective, and I'm encountering an issue where it only shows up while the window is loading.
._red{
background-color:#f00;
display:block;
width:100px;
height:100px;
transform: perspective( 600px ) rotateY( 45deg );
}
I'm looking to rotate the div element using CSS3 perspective either on window load or by clicking any trigger using jQuery. How can I achieve this, and how do I make it perform a full rotation?