• 旋转轴心案例


    <style>
    *{
    padding: 0;
    margin: 0;
    }
    .pkBox{
    155px;
    height: 219px;
    margin: 200px auto;
    position: relative;
    }
    .pkBox>img{
    100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 2s;
    transform-origin: right top;
    }
    .pkBox:hover>img:nth-of-type(1){
    transform: rotate(60deg);
    }
    .pkBox:hover>img:nth-of-type(2){
    transform: rotate(120deg);
    }
    .pkBox:hover>img:nth-of-type(3){
    transform: rotate(180deg);
    }
    .pkBox:hover>img:nth-of-type(4){
    transform: rotate(240deg);
    }
    .pkBox:hover>img:nth-of-type(5){
    transform: rotate(300deg);
    }
    .pkBox:hover>img:nth-of-type(6){
    transform: rotate(360deg);
    }

    </style>
    </head>
    <body>
    <div class="pkBox">
    <img src="images/img/pk1.png" alt="">
    <img src="images/img/pk2.png" alt="">
    <img src="images/img/pk1.png" alt="">
    <img src="images/img/pk2.png" alt="">
    <img src="images/img/pk1.png" alt="">
    <img src="images/img/pk2.png" alt="">
    </div>
  • 相关阅读:
    python中的keys、values、items
    python中的del
    python中的reverse
    python中的remove
    python中的pop
    zookeeper for windows
    express
    js undefine,null 和NaN
    Think_php入口文件配置
    jquery 集合操作
  • 原文地址:https://www.cnblogs.com/lujieting/p/10182614.html
Copyright © 2020-2023  润新知