<?xml version="1.0" encoding="UTF-8"?><property><name>-webkit-animation-timing-function</name><description><![CDATA[Defines how an animation progresses between keyframes.]]></description><keywords><![CDATA[css property -webkit-animation-timing-function webkit animation timing function]]></keywords><longDescription><![CDATA[<p>
    The timing function is specified using a cubic Bezier curve.
    Use the constants to specify preset points of the curve or
    the <code>cubic-bezier</code> function to specify your own points.
    See <a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariCSSRef/Articles/Functions.html#//apple_ref/css/func/cubic-bezier">cubic-bezier</a>
    for a description of the parameters for this function.
    See <a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariCSSRef/Articles/Functions.html#//apple_ref/doc/uid/TP40007955-SW24">"Visual Effects Timing Functions"</a>
    for additional information about timing functions.
</p>
<p>
    This property applies between keyframes, not over the entire animation.
    For example, for an <code>ease-in-out</code> timing function, an animation eases
    in at the start of the keyframe and eases out at the end of the keyframe.
    A <code>-webkit-animation-timing-function</code> defined within a keyframe block
    applies to that keyframe; otherwise, the timing function specified for the animation is used.
</p>


]]></longDescription><syntaxes><syntax><![CDATA[-webkit-animation-timing-function: <function> [, …];]]></syntax></syntaxes><values><value><name><![CDATA[<function>]]></name><description><![CDATA[<p>The function to apply between keyframes.</p>]]></description><values><value><name><![CDATA[ease]]></name><description><![CDATA[Equivalent to <code>cubic-bezier(0.25, 0.1, 0.25, 1.0)</code>.]]></description></value><value><name><![CDATA[linear]]></name><description><![CDATA[Equivalent to <code>cubic-bezier(0.0, 0.0, 1.0, 1.0)</code>.]]></description></value><value><name><![CDATA[ease-in]]></name><description><![CDATA[Equivalent to <code>cubic-bezier(0.42, 0, 1.0, 1.0)</code>.]]></description></value><value><name><![CDATA[ease-out]]></name><description><![CDATA[Equivalent to <code>cubic-bezier(0, 0, 0.58, 1.0)</code>.]]></description></value><value><name><![CDATA[ease-in-out]]></name><description><![CDATA[Equivalent to <code>cubic-bezier(0.42, 0, 0.58, 1.0)</code>.]]></description></value></values></value></values><versions><version key="safari.4.0"><![CDATA[http://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/css/property/-webkit-animation-timing-function]]></version><version key="ios.2.0"><![CDATA[http://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/css/property/-webkit-animation-timing-function]]></version></versions></property>