rotation

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

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

複數: rotations

point

英[pɔɪnt]   美[pɔɪnt]  

n.點;重點;得分;標點

vt.(意思上)指向;削尖;加標點於;指路

#vi.指向;表示

第三人稱單數: points 複數: points 現在分詞: pointing 過去式: pointed 過去分詞: pointed

css rotation-point屬性 語法

作用:rotation-point 屬性是一對值,定義從上方左邊框邊緣進行偏移的點。

語法:rotation-point: 值;

說明:left top,left center,left bottom,right top,right center,right bottom,center top,center center,center bottom。如果只規定一個關鍵字,則第二個值將是 "center"。

註解:rotation-point 屬性需要與 rotation 屬性結合使用。目前沒有瀏覽器支援 rotation-point 屬性。

css rotation-point屬性 範例

<!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>

執行實例 »

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