前端css动画transform多个属性值写法

X轴平移400px transform: translateX(400px);

X轴平移400px并缩小0.5倍 transform: translateX(400px) scale(0.5);

X轴平移400px并旋转45度 transform: translateX(400px) rotate(45deg);

直接空格直接加属性即可

建议写的时候先平移

html 复制代码
<!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>
        .box1{
            width: 600px;
            height: 600px;
            border: 2px solid gray;
        }
        .box1 div{
            width: 100px;
            height: 100px;
            border: 2px solid gray;
            background: red;
        }
        .box1 div:nth-child(1){
            transform: translateX(400px);
            /* X轴平移400px */
        }
        .box1 div:nth-child(2){
            transform: translateX(400px) scale(0.5);
            /* X轴平移400px并缩小0.5倍 */
        }
        .box1 div:nth-child(3){
            transform: translateX(400px) rotate(45deg);
            /* X轴平移400px并旋转45度 */
        }
    </style>
</head>
<body>
    <div class="box1">
        <div> X轴平移400px</div>
        <div>X轴平移400px并缩小0.5倍</div>
        <div>X轴平移400px并旋转45度</div>
    </div>
</body>
</html>
相关推荐
巴巴_羊23 分钟前
yarn npm pnpm
前端·npm·node.js
chéng ௹2 小时前
vue2 上传pdf,拖拽盖章,下载图片
前端·css·pdf
嗯.~2 小时前
【无标题】如何在sheel中运行Spark
前端·javascript·c#
A_aspectJ4 小时前
【Bootstrap V4系列】学习入门教程之 组件-输入组(Input group)
前端·css·学习·bootstrap·html
兆。5 小时前
电子商城后台管理平台-Flask Vue项目开发
前端·vue.js·后端·python·flask
互联网搬砖老肖5 小时前
Web 架构之负载均衡全解析
前端·架构·负载均衡
sunbyte6 小时前
Tailwind CSS v4 主题化实践入门(自定义 Theme + 主题模式切换)✨
前端·javascript·css·tailwindcss
风之舞_yjf6 小时前
Vue基础(8)_监视属性、深度监视、监视的简写形式
javascript·vue.js·ecmascript
湛海不过深蓝7 小时前
【css】css统一设置变量
前端·css
DONSEE广东东信智能读卡器7 小时前
蓝牙身份证阅读器使用Uniapp调用二次开发demo
javascript·uni-app·蓝牙·身份证阅读器