通過CSS3 轉換,我們能夠對元素進行移動、縮放、轉動、拉長或拉伸。
它如何工作?
轉換是使元素改變形狀、尺寸和位置的一種效果。
您可以使用2D 或3D 轉換來轉換您的元素。
瀏覽器支持
Internet Explorer 10、Firefox 以及Opera 支持transform 屬性。
Chrome 和Safari 需要前綴-webkit-。
註釋: Internet Explorer 9需要前 綴-ms-。
2D 轉換
- translate()
- rotate()
- scale()
- skew()
- matrix()
實例
div { transform: rotate(30deg); -ms-transform: rotate(30deg); <span class="code_comment">/* IE 9 */</span> -webkit-transform: rotate(30deg); <span class="code_comment">/* Safari and Chrome */</span> -o-transform: rotate(30deg); <span class="code_comment">/* Opera */</span> -moz -transform: rotate(30deg); <span class="code_comment">/* Firefox */</span> }
translate() 方法
通過translate() 方法,元素從其當前位置移動,根據給定的left(x 坐標) 和top(y 坐標) 位置參數:
實例
div { transform: translate(50px,100px); -ms-transform: translate(50px,100px); <span class="code_comment">/* IE 9 */</span> -webkit-transform: translate(50px,100px); <span class="code_comment">/* Safari and Chrome */</span> -o-transform: translate(50px,100px); <span class="code_comment">/ * Opera */</span> -moz-transform: translate(50px,100px); <span class="code_comment">/* Firefox */</span> }
值translate(50px,100px) 把元素從左側移動50 像素,從頂端移動100 像素。
rotate() 方法
通過rotate() 方法,元素順時針旋轉給定的角度。允許負值,元素將逆時針旋轉。
實例
div { transform: rotate(30deg); -ms-transform: rotate(30deg); <span class="code_comment">/* IE 9 */</span> -webkit-transform: rotate(30deg); <span class="code_comment">/* Safari and Chrome */</span> -o-transform: rotate(30deg); <span class="code_comment">/* Opera */</span> -moz -transform: rotate(30deg); <span class="code_comment">/* Firefox */</span> }
值rotate(30deg) 把元素順時針旋轉30 度。
scale() 方法
通過scale() 方法,元素的尺寸會增加或減少,根據給定的寬度(X 軸)和高度(Y 軸)參數:
實例
div { transform: scale(2,4); -ms-transform: scale(2,4); <span class="code_comment">/* IE 9 */</span> -webkit-transform: scale(2,4); <span class="code_comment">/* Safari和Chrome */</span> -o-transform: scale(2,4); <span class="code_comment">/ * Opera */</span> -moz-transform: scale(2,4); <span class="code_comment">/* Firefox */</span> }
值scale(2,4) 把寬度轉換為原始尺寸的2 倍,把高度轉換為原始高度的4 倍。
skew() 方法
通過skew() 方法,元素翻轉給定的角度,根據給定的水平線(X 軸)和垂直線(Y 軸)參數:
實例
div { transform: skew(30deg,20deg); -ms-transform: skew(30deg,20deg); <span class="code_comment">/* IE 9 */</span> -webkit-transform: skew(30deg,20deg); <span class="code_comment">/* Safari and Chrome */</span> -o-transform: skew(30deg,20deg); <span class="code_comment">/ * Opera */</span> -moz-transform: skew(30deg,20deg); <span class="code_comment">/* Firefox */</span> }
值skew(30deg,20deg) 圍繞X 軸把元素翻轉30 度,圍繞Y 軸翻轉20 度。
matrix() 方法
matrix() 方法把所有2D 轉換方法組合在一起。
matrix() 方法需要六個參數,包含數學函數,允許您:旋轉、縮放、移動以及傾斜元素。
實例
如何使用matrix 方法將div 元素旋轉30 度:
div { transform:matrix(0.866,0.5,-0.5,0.866,0,0); -ms-transform:matrix(0.866,0.5,-0.5,0.866,0,0); <span class="code_comment">/* IE 9 */</span> -moz-transform:matrix(0.866,0.5,-0.5,0.866,0,0); <span class="code_comment">/* Firefox */</span> -webkit-transform:matrix(0.866,0.5,-0.5,0.866,0,0); <span class="code_comment">/* Safari and Chrome */</span> -o-transform:matrix(0.866,0.5,-0.5,0.866,0,0 ); <span class="code_comment">/* Opera */</span> }
新的轉換屬性
下面的表格列出了所有的轉換屬性:
屬性 | 描述 | CSS |
---|---|---|
transform | 向元素應用2D 或3D 轉換。 | 3 |
transform-origin | 允許你改變被轉換元素的位置。 | 3 |
2D Transform 方法
函數 | 描述 |
---|---|
matrix( n , n , n , n , n ,n ) | 定義2D 轉換,使用六個值的矩陣。 |
translate( x , y ) | 定義2D 轉換,沿著X 和Y 軸移動元素。 |
translateX( n ) | 定義2D 轉換,沿著X 軸移動元素。 |
translateY( n ) | 定義2D 轉換,沿著Y 軸移動元素。 |
scale( x , y ) | 定義2D 縮放轉換,改變元素的寬度和高度。 |
scaleX( n ) | 定義2D 縮放轉換,改變元素的寬度。 |
scaleY( n ) | 定義2D 縮放轉換,改變元素的高度。 |
rotate( angle ) | 定義2D 旋轉,在參數中規定角度。 |
skew( x-angle , y-angle ) | 定義2D 傾斜轉換,沿著X 和Y 軸。 |
skewX( angle ) | 定義2D 傾斜轉換,沿著X 軸。 |
skewY( angle ) | 定義2D 傾斜轉換,沿著Y 軸。 |
留言列表