Re: [css3-transforms] Making transform-origin a list, converting transform to comma separated

On 6/2/12 20:09, Boris Zbarsky wrote:
> How do you do it with multiple origins?

@keyframes circle {
 from { transform: rotate(0deg), rotate(0deg); }
 to { transform: rotate(360deg), rotate(-360deg); }
}

div {
 transform-origin: 50% 100px, 50% 50%;
 animation: 1s circle;
}



-- 
Lea Verou (http://lea.verou.me | @LeaVerou)

Received on Monday, 6 February 2012 23:18:26 UTC