当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


CSS rotateZ()用法及代码示例


rotateZ()函数是一个内置函数,用于使元素绕z轴旋转。

用法:

rotateZ( angle )

参数:该函数接受代表旋转角度的单个参数角度。正角和负角分别使元素顺时针和逆时针旋转。


以下示例说明了CSS中的rotateZ()函数:

范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS rotateZ() function</title> 
  
    <style> 
        body { 
            text-align:center; 
        } 
        h1 { 
            color:green; 
        } 
        .rotateZ_image { 
            transform:rotateZ(45deg); 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>CSS rotateZ() function</h2> 
  
    <br><br> 
  
    <img class="rotateZ_image" src= 
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
         alt="GeeksforGeeks logo"> 
</body> 
  
</html>                                    

输出:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS rotateZ() function</title> 
  
    <style> 
        body { 
            text-align:center; 
        } 
        h1 { 
            color:green; 
        } 
        .GFG { 
            font-size:35px; 
            font-weight:bold; 
            color:green; 
            transform:rotateZ(45deg); 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>CSS rotateZ() function</h2> 
  
    <br><br> 
  
    <div class="GFG">Welcome to GeeksforGeeks</div> 
</body> 
  
</html>

输出:

支持的浏览器:rotateZ()函数支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 CSS | rotateZ() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。