Home > Q&A > body text
比如这个transition: width,height 1s ease;
transition: width,height 1s ease;
高洛峰2017-04-17 11:40:35
transition: width,height 1s,1s ease,ease;I know...the following value should be written again with commas...
transition: width,height 1s,1s ease,ease;
阿神2017-04-17 11:40:35
Multiple attributes can be directly transition: all 1s ease
transition: all 1s ease
transition: width 1s ease, height 1s ease;
No commas, just separate them with spaces!