Is it possible to set different duration/delay for transform options?

前端 未结 3 1740
梦谈多话
梦谈多话 2021-02-19 21:07

I want to set several transform options for my html object but with different duration and delay.

If i try to use something like that:

-webkit-transition         


        
3条回答
  •  感动是毒
    2021-02-19 21:33

    Yes you can do this directly with CSS3 animations. If you have an opacity transform from 0 to 1 that lasts 20 seconds, and a 90 degree rotation that lasts 10 seconds, then you create a keyframe at 10 seconds with opacity .5 and rotation 90 degrees and another keyframe at 20 seconds with opacity 1 and rotation 90 degrees. It's sort of a pain, but it will work. Nesting divs is a bit cleaner (as Doug says above)

    Ok here's the code:

    @-webkit-keyframes foo {
     0% {
        -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0;
     }
     50% {
        -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.5;
     }
    
     100% {
        -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(90deg);
        opacity: 1;
     }
    

    And you'd put

    -webkit-animation-duration: 20s;
    

    into your HTML.

提交回复
热议问题