recherche

Maison  >  Questions et réponses  >  le corps du texte

css3 - css 3问题, transition:0.5s all;是指所有属性?

w3cSchool这样说的:

天蓬老师天蓬老师2778 Il y a quelques jours1124

répondre à tous(3)je répondrai

  • ringa_lee

    ringa_lee2017-04-17 11:47:58

    差不多是题主说的这个意思,但是要明确一点,所有是指哪里的所有,

    p{
        width: 200px;
        height: 200px;
        margin: 300px auto;
        background-color: #336699;
        
        transition: all 1s;
        /*transition: height 1s;*/
    }
    p:hover{
        width: 300px;
        height: 400px;
    }

    我认为这里的 all 指的是 transition 之后的样式,上面的代码运行结果 p 的宽高都是流畅转变的, 当我们把 all 改成 height 之后, 只有 height 转变过程之中有动画效果, width 就是瞬间变化.

    répondre
    0
  • 黄舟

    黄舟2017-04-17 11:47:58

    是的,all 也可以省略不写

    répondre
    0
  • 黄舟

    黄舟2017-04-17 11:47:58

    是的,建议使用时指定某一属性比较好

    répondre
    0
  • Annulerrépondre