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