<?xml version="1.0" encoding="UTF-8"?><property><name>-webkit-transition-timing-function</name><description><![CDATA[Specifies how the intermediate values used during a transition are calculated.]]></description><keywords><![CDATA[css property -webkit-transition-timing-function webkit transition timing function]]></keywords><longDescription><![CDATA[<p>This property allows for a transition to change speed over its duration. These effects, commonly called easing functions, are mathematical functions that produce a smooth curve.</p>
<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.</p>
<p>The timing function takes as its input the current elapsed percentage of the transition duration and outputs a percentage that determines how close the transition is to its goal state.</p>
]]></longDescription><syntaxes><syntax><![CDATA[-webkit-transition-timing-function: <timing_function> [, ...];]]></syntax></syntaxes><values><value><name><![CDATA[<timing_function>]]></name><description><![CDATA[<p>The timing function.</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.3.1"><![CDATA[http://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html#//apple_ref/css/property/-webkit-transition-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-transition-timing-function]]></version></versions></property>