当前位置:   article > 正文

CSS之transform的translate平移属性【2D】(一)_css transform translate

css transform translate

transform属性

# 属性属性
transform: translate/translateX translateY perspective translateZ;
  • 1
  • 2

translate

中文意思为 平移,通过 X 轴,Y 轴来移动元素。

translate(x, y)

xy 可设置为百分比值,代表着基于 自身宽度/高度 的百分比,

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Document</title>
        <style>
            .box {
     
                width: 300px;
                height: 300px;
                background-color: #bfa;
            }
            .children {
      
                width: 100px;
                height: 100px;
                background-color: red;
                /* 基于自身宽度的百分比 */
                transform: translate(100%, 100%);
            }
        </style>
    </head>
    <body>
        <div class="b
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码艺术家/article/detail/60325
推荐阅读
相关标签
  

闽ICP备14008679号