• 多个transform 属性案例


    <style>
    *{
    padding: 0;
    margin: 0;
    }
    body{
    background-color: #31965b;
    }
    .box{
    440px;
    margin:100px auto;
    }
    .box>img{
    transition: transform 1s;
    }
    .box>img:nth-of-type(1){
    transform:translate(100px,100px) rotate(30deg);
    }
    .box > img:nth-of-type(2){
    transform: translate(-100px,-100px) rotate(-30deg);
    }
    .box > img:nth-of-type(3){
    transform: translate(200px,200px) rotate(60deg);
    }
    .box > img:nth-of-type(4){
    transform: translate(-200px,-200px) rotate(-60deg);
    }
    .box > img:nth-of-type(5){
    transform: translate(150px,150px) rotate(90deg);
    }
    .box > img:nth-of-type(6){
    transform: translate(50px,150px) rotate(-90deg);
    }
    .box > img:nth-of-type(7){
    transform: translate(-150px,-150px) rotate(60deg);
    }
    .box > img:nth-of-type(8){
    transform: translate(10px,-250px) rotate(-90deg);
    }
    .box > img:nth-of-type(9){
    transform: translate(-250px,10px) rotate(45deg);
    }
    .box:hover>img{
    transform: none;
    }
    </style>
    </head>
    <body>
    <div class="box">
    <img src="images/img/shield_1_01.png" alt="">
    <img src="images/img/shield_1_02.png" alt="">
    <img src="images/img/shield_1_03.png" alt="">
    <img src="images/img/shield_1_04.png" alt="">
    <img src="images/img/shield_1_05.png" alt="">
    <img src="images/img/shield_1_06.png" alt="">
    <img src="images/img/shield_1_07.png" alt="">
    <img src="images/img/shield_1_08.png" alt="">
    <img src="images/img/shield_1_09.png" alt="">
    </div>
  • 相关阅读:
    python 学习笔记7(类/对象的属性;特性,__getattr__)
    linux 误删文件恢复
    python 学习笔记6(数据库 sqlite)
    hive 函数 Cube
    边标志法填充多边形
    tolua#代码简要分析
    CocoaAsyncSocket + Protobuf 处理粘包和拆包问题
    【设计模式】适配器模式
    【设计模式】外观模式
    【操作系统】进程管理(二)
  • 原文地址:https://www.cnblogs.com/lujieting/p/10182620.html
Copyright © 2020-2023  润新知