• h5/css动态旋转木马源码


    html,body{ height: 100%;}

    *{ box-sizing:border-box;}

    .imgBox{ transform-style: preserve-3d; position: relative; 100px; height: 100px; margin:200px auto 0;}

    .imgBox img{100%; height: 100%; position: absolute; top:0; transition: transform 1s linear; cursor: pointer;

    border-radius: 10px; box-shadow: 1px 1px 1px 1px #222;}

    @keyframes xzmm{

    from{ transform: perspective(400px) rotateY( 0deg) translateZ(200px);}

    to{ transform: perspective(400px) rotateY( 360deg) translateZ(200px);}

    }

    .imgBox img.sel{ box-shadow: 0 0 3px 1px #00BCD4;}

     

     

    " />


     

    " />


     

    " />


     

    " />


     

    " />


     

    " />


     

    " />


     

    " />


     

    " />

    $(function(){

    var $imgBox = $("#imgBox");

    var imgCount = $imgBox.children().length;

    var dur = 9; // 旋转一圈所需时间,单位s

    $imgBox.children().each(function(i,dom){

    var $this = $(this);

    $this.css({

    "z-index": imgCount-i,

    "animation": "xzmm "+dur+"s linear "+i*(dur/imgCount)+"s infinite forwards"

    }).on("mouseenter",function(){

    $(this).parent().children().removeClass("sel").css({

    "animation-play-state": "paused"

    });

    $(this).addClass("sel");

    }).on("mouseleave",function(){

    $(this).parent().children().removeClass("sel").css({

    "animation-play-state": "running"

    });

    });

    });

    })


     

  • 相关阅读:
    Windows 代码实现关机(直接黑屏)
    Windows SEH学习 x86
    Smali 语法文档
    SIOCADDRT: No such process
    Windbg 常用命令整理
    ida GDB 远程调试
    IDA 使用技巧
    Windows X64 Patch Guard
    C 和C++ 名称修饰规则
    【转载】 硬盘主引导记录(MBR)及其结构详解
  • 原文地址:https://www.cnblogs.com/xsns/p/6698244.html
Copyright © 2020-2023  润新知