英 [rəʊˈteɪʃn]   美 [roʊˈteɪʃn]  

n.旋轉,轉動;輪流,循環;[農]輪作;[天]自轉

#複數: rotations##

css rotation屬性 語法

作用:圍繞著由 rotation-point 屬性定義的點對元素進行旋轉。

語法:rotation: angle;

#說明:angle    元素旋轉角度。可能的值:0deg 到 360deg。    

註:邊框、內邊距、內容以及背景(非固定)也會旋轉!目前沒有瀏覽器支援 rotation 屬性。

css rotation屬性 範例

<!DOCTYPE html>
<html>
<head>
<style> 
h1
{
rotation-point:50% 50%;
rotation:180deg;
}
</style>
</head>
<body>

<h1>旋转效果</h1>

<p><b>注释:</b>目前没有浏览器支持 rotation-point 或 rotation 属性。</p>

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例