當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


CSS translate()用法及代碼示例


translate()函數是一個內置函數,用於在水平和垂直方向上重新定位元素。

用法:

translate( tx )

或者


translate( tx, ty )

參數:

  • tx:此參數保存對應於x軸的平移長度。
  • ty:此參數保存對應於y軸的平移長度。如果未定義其值,則它將0作為默認值。

以下示例說明了CSS中的translate()函數:

範例1:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>CSS translate() function</title>  
  
    <style>  
        body { 
            text-align:center; 
        } 
        h1 { 
            color:green; 
        } 
        .translate_image { 
            transform:translate(100px, 0); 
        } 
    </style>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1> 
    <h2>CSS translate() function</h2> 
      
    <h4>Original Image</h4> 
    <img src=  
"https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png"
        alt="GeeksforGeeks logo"> 
    <br> 
      
    <h4>Translate image</h4> 
    <img class="translate_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 translate() function</title>  
  
    <style>  
        body { 
            text-align:center; 
        } 
        h1 { 
            color:green; 
        } 
        .GFG { 
            font-size:35px; 
            font-weight:bold; 
            color:green; 
        } 
        .geeks { 
            transform:translate(100px, 100px); 
        } 
    </style>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1> 
    <h2>CSS translate() function</h2> 
      
    <h4>Original Element</h4> 
    <div class="GFG">Welcome to GeeksforGeeks</div> 
      
    <h4>Translated Element</h4> 
    <div class="GFG geeks">Welcome to GeeksforGeeks</div>  
</body>  
</html>

輸出:

支持的瀏覽器:translate()函數支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • 蘋果瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 CSS | translate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。