CSS3 Transition Properties CSS3 transitions allows you to change property values smoothly (from one value to another), over a given duration.
Use CSS3 Transitions To create a transition effect, you must specify two things: • The CSS property you want to add an effect to • The duration of the effect Note: If the duration part is not specified, the transition will have no effect, because the default value is 0.
Specify the Speed Curve of the Transition The transition-timing-function property specifies the speed curve of the transition effect. The transition-timing-function property can have the following values: • ease - specifies a transition effect with a slow start, then fast, then end slowly (this is default) • linear - specifies a transition effect with the same speed from start to end • ease-in - specifies a transition effect with a slow start • ease-out - specifies a transition effect with a slow end • ease-in-out - specifies a transition effect with a slow start and end • cubic-bezier(n,n,n,n) - lets you define your own values in a cubic-bezier function
CSS3 - Animation Animation is process of making shape changes and creating motions with elements. An animation lets an element gradually change from one style to another. You can change as many CSS properties you want, as many times you want. To use CSS3 animation, you must first specify some keyframes for the animation. Keyframes hold what styles the element will have at certain times.
المادة المعروضة اعلاه هي مدخل الى المحاضرة المرفوعة بواسطة استاذ(ة) المادة . وقد تبدو لك غير متكاملة . حيث يضع استاذ المادة في بعض الاحيان فقط الجزء الاول من المحاضرة من اجل الاطلاع على ما ستقوم بتحميله لاحقا . في نظام التعليم الالكتروني نوفر هذه الخدمة لكي نبقيك على اطلاع حول محتوى الملف الذي ستقوم بتحميله .
|