Lines Matching refs:transition

114     -webkit-transition: 0.5s;
115 -moz-transition: 0.5s;
116 -ms-transition: 0.5s;
117 -o-transition: 0.5s;
118 transition: 0.5s;
192 -webkit-transition: opacity 1s;
193 -moz-transition: opacity 1s;
194 -ms-transition: opacity 1s;
195 -o-transition: opacity 1s;
196 transition: opacity 1s;
323 transition duration to 0.5s ...
327 -webkit-transition: 0.5s;
328 -moz-transition: 0.5s;
329 -ms-transition: 0.5s;
330 -o-transition: 0.5s;
331 transition: 0.5s;
356 -webkit-transition-delay: 0.25s;
357 -moz-transition-delay: 0.25s;
358 -ms-transition-delay: 0.25s;
359 -o-transition-delay: 0.25s;
360 transition-delay: 0.25s;
373 -webkit-transition-delay: 0.5s;
374 -moz-transition-delay: 0.5s;
375 -ms-transition-delay: 0.5s;
376 -o-transition-delay: 0.5s;
377 transition-delay: 0.5s;
433 Below we position each word separately along Z axis and we want it to transition
447 -webkit-transition: 0.5s;
448 -moz-transition: 0.5s;
449 -ms-transition: 0.5s;
450 -o-transition: 0.5s;
451 transition: 0.5s;
540 Let me explain it first, so maybe the transition magic will be more readable
545 hint by 5s using transition-delay.
560 Unfortunately you cannot transition between display `block` and `none` in pure
567 the fade in transition, so it starts when the hint is already in its correct
615 So we define the transition on the opacity property with 1s duration and another
616 transition on transform property delayed by 1s so it will happen after the fade out
621 -webkit-transition: opacity 1s, -webkit-transform 0.5s 1s;
622 -moz-transition: opacity 1s, -moz-transform 0.5s 1s;
623 -ms-transition: opacity 1s, -ms-transform 0.5s 1s;
624 -o-transition: opacity 1s, -o-transform 0.5s 1s;
625 transition: opacity 1s, transform 0.5s 1s;
650 Now for fade in transition we have the oposite situation from the one
655 transition.
657 -webkit-transition: opacity 1s 5s, -webkit-transform 0.5s 4.5s;
658 -moz-transition: opacity 1s 5s, -moz-transform 0.5s 4.5s;
659 -ms-transition: opacity 1s 5s, -ms-transform 0.5s 4.5s;
660 -o-transition: opacity 1s 5s, -o-transform 0.5s 4.5s;
661 transition: opacity 1s 5s, transform 0.5s 4.5s;