CSS3 rotation 屬性
CSS3rotation屬性
實(shí)例
將 h1 元素旋轉(zhuǎn) 180 度(從上向下):p>
h1
{
rotation-point:50% 50%;
rotation:180deg;
}
{
rotation-point:50% 50%;
rotation:180deg;
}
瀏覽器支持
目前沒有瀏覽器支持 rotation 屬性。
屬性定義及使用說明
rotation 屬性圍繞由 rotation-point 屬性定義的指定點(diǎn),對(duì)塊級(jí)元素進(jìn)行逆時(shí)針旋轉(zhuǎn)。
默認(rèn)值: | 0 |
---|---|
繼承: | no |
版本: | CSS3 |
JavaScript 語法: | object.style.rotation="180deg" |
語法
rotation:angle;
值 | 描述 |
---|---|
angle | 元素旋轉(zhuǎn)角度。可能的值:0deg 到 360deg。 |