赞
踩
赞
踩
# 属性属性
transform: translate/translateX translateY perspective translateZ;
中文意思为 平移
,通过 X
轴,Y
轴来移动元素。
x
,y
可设置为百分比值,代表着基于 自身宽度/高度
的百分比,
<!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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。