Home > Web Front-end > HTML Tutorial > css3 transition transition_html/css_WEB-ITnose

css3 transition transition_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:50:04
Original
1365 people have browsed it

Transition: transition

transition: abbreviation of transition-property/duration/timing-function/delay.
  transition: <'transition-property'> || <'transition-duration'> || <'transition-timing-function'> || <'transition-delay'> [ , ... ];

  transition-property: The property name of the transformation.
None, all, one or more (comma separated).

 Transition-duration: duration. The unit is s or ms.
  

Transition-timing-function: The speed curve of the transition effect.
linear: uniform speed, equal to cubic-bezier(0,0,1,1)
ease: slow, fast, equal to cubic-bezier(0.25,0.1,0.25,1)
ease-in: slow Start, equal to cubic-bezier(0.25,0.1,0.25,1)
  ease-out: End with slow, equal to cubic-bezier(0,0,0.25,1)
  ease-in-out: End with slow The start and end are equal to cubic-bezier(0.42,0,0.58,1)
  cubiz-bezier(n,n,n,n): [cubic Bezier] define your own value in the cubiz-bezier function, 0~1.

Transition-delay: Specify the start time. Default is 0.
Comma-separated delay times for multiple attributes.
   -moz-transition: color 0.3s ease-out 2s;





over










< ;/div>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template