css3-transitions/Overview.html

changeset 7174
ab47414d690c
parent 6739
f4ccc8c2ecf0
child 7182
a38c76f0336b
     1.1 --- a/css3-transitions/Overview.html	Mon Jan 07 10:35:13 2013 -0800
     1.2 +++ b/css3-transitions/Overview.html	Wed Jan 09 07:37:20 2013 +1100
     1.3 @@ -5,16 +5,17 @@
     1.4   <head profile="http://dublincore.org/documents/2008/08/04/dc-html/ ">
     1.5    <title>CSS Transitions</title>
     1.6  
     1.7 -  <link href="http://purl.org/dc/terms/" rel=schema.DC>
     1.8 -  <meta content="CSS Transitions" name=DC.title>
     1.9 -  <meta content=text name=DC.type>
    1.10 -  <meta content=2012-09-20 name=DC.issued>
    1.11 -  <meta content="http://dev.w3.org/csswg/css3-transitions/" name=DC.creator>
    1.12 -  <meta content=W3C name=DC.publisher>
    1.13 -  <meta content="http://www.w3.org/TR/2012/ED-css3-transitions-20120920/"
    1.14 -   name=DC.identifier>
    1.15 +  <link href="http://purl.org/dc/terms/" rel=schema.dcterms>
    1.16    <link href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
    1.17 -   rel=DC.rights>
    1.18 +   rel=dcterms.rights>
    1.19 +  <meta content="CSS Transitions" name=dcterms.title>
    1.20 +  <meta content=text name=dcterms.type>
    1.21 +  <meta content=2013-01-09 name=dcterms.issued>
    1.22 +  <meta content="http://dev.w3.org/csswg/css3-transitions/"
    1.23 +   name=dcterms.creator>
    1.24 +  <meta content=W3C name=dcterms.publisher>
    1.25 +  <meta content="http://www.w3.org/TR/2013/ED-css3-transitions-20130109/"
    1.26 +   name=dcterms.identifier>
    1.27    <meta content="text/html; charset=utf-8" http-equiv=Content-Type>
    1.28    <link href="../default.css" rel=stylesheet type="text/css">
    1.29    <style type="text/css">
    1.30 @@ -37,15 +38,14 @@
    1.31  
    1.32     <h1>CSS Transitions</h1>
    1.33  
    1.34 -   <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 20 September
    1.35 -    2012</h2>
    1.36 +   <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 January 2013</h2>
    1.37  
    1.38     <dl>
    1.39      <dt>This version:
    1.40  
    1.41 -    <dd> <a href="http://www.w3.org/TR/2012/ED-css3-transitions-20120920/">
    1.42 +    <dd> <a href="http://www.w3.org/TR/2013/ED-css3-transitions-20130109/">
    1.43       http://dev.w3.org/csswg/css3-transitions/</a>
    1.44 -     <!--http://www.w3.org/TR/2012/WD-css3-transitions-20120920/-->
    1.45 +     <!--http://www.w3.org/TR/2013/WD-css3-transitions-20130109/-->
    1.46  
    1.47      <dt>Latest version:
    1.48  
    1.49 @@ -96,7 +96,7 @@
    1.50     <!--begin-copyright-->
    1.51     <p class=copyright><a
    1.52      href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
    1.53 -    rel=license>Copyright</a> © 2012 <a href="http://www.w3.org/"><abbr
    1.54 +    rel=license>Copyright</a> © 2013 <a href="http://www.w3.org/"><abbr
    1.55      title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a
    1.56      href="http://www.csail.mit.edu/"><abbr
    1.57      title="Massachusetts Institute of Technology">MIT</abbr></a>, <a
    1.58 @@ -644,27 +644,24 @@
    1.59    <dl>
    1.60     <dt> ease
    1.61  
    1.62 -   <dd> The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25,
    1.63 -    1.0).
    1.64 +   <dd> The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1).
    1.65  
    1.66     <dt> linear
    1.67  
    1.68 -   <dd> The linear function is equivalent to cubic-bezier(0.0, 0.0, 1.0,
    1.69 -    1.0).
    1.70 +   <dd> The linear function is equivalent to cubic-bezier(0, 0, 1, 1).
    1.71  
    1.72     <dt> ease-in
    1.73  
    1.74 -   <dd> The ease-in function is equivalent to cubic-bezier(0.42, 0, 1.0,
    1.75 -    1.0).
    1.76 +   <dd> The ease-in function is equivalent to cubic-bezier(0.42, 0, 1, 1).
    1.77  
    1.78     <dt> ease-out
    1.79  
    1.80 -   <dd> The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1.0).
    1.81 +   <dd> The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1).
    1.82  
    1.83     <dt> ease-in-out
    1.84  
    1.85     <dd> The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58,
    1.86 -    1.0)
    1.87 +    1)
    1.88  
    1.89     <dt> step-start
    1.90  
    1.91 @@ -1656,10 +1653,10 @@
    1.92     <dt id=CSS3-TRANSFORMS>[CSS3-TRANSFORMS]
    1.93  
    1.94     <dd>Simon Fraser; et al. <a
    1.95 -    href="http://www.w3.org/TR/2012/WD-css3-transforms-20120403/"><cite>CSS
    1.96 -    Transforms.</cite></a> 3 April 2012. W3C Working Draft. (Work in
    1.97 +    href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/"><cite>CSS
    1.98 +    Transforms.</cite></a> 11 September 2012. W3C Working Draft. (Work in
    1.99      progress.) URL: <a
   1.100 -    href="http://www.w3.org/TR/2012/WD-css3-transforms-20120403/">http://www.w3.org/TR/2012/WD-css3-transforms-20120403/</a>
   1.101 +    href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/">http://www.w3.org/TR/2012/WD-css3-transforms-20120911/</a>
   1.102     </dd>
   1.103     <!---->
   1.104    </dl>
   1.105 @@ -1676,10 +1673,10 @@
   1.106     <dt id=CSS21>[CSS21]
   1.107  
   1.108     <dd>Bert Bos; et al. <a
   1.109 -    href="http://www.w3.org/TR/2011/REC-CSS2-20110607"><cite>Cascading Style
   1.110 +    href="http://www.w3.org/TR/2011/REC-CSS2-20110607/"><cite>Cascading Style
   1.111      Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 June
   1.112      2011. W3C Recommendation. URL: <a
   1.113 -    href="http://www.w3.org/TR/2011/REC-CSS2-20110607">http://www.w3.org/TR/2011/REC-CSS2-20110607</a>
   1.114 +    href="http://www.w3.org/TR/2011/REC-CSS2-20110607/">http://www.w3.org/TR/2011/REC-CSS2-20110607/</a>
   1.115     </dd>
   1.116     <!---->
   1.117  
   1.118 @@ -1717,13 +1714,28 @@
   1.119  
   1.120     <tbody>
   1.121      <tr>
   1.122 +     <th><a class=property href="#transition">transition</a>
   1.123 +
   1.124 +     <td>&lt;single-transition&gt; [ ‘,’ &lt;single-transition&gt; ]*
   1.125 +
   1.126 +     <td>see individual properties
   1.127 +
   1.128 +     <td>
   1.129 +
   1.130 +     <td>no
   1.131 +
   1.132 +     <td>N/A
   1.133 +
   1.134 +     <td>interactive
   1.135 +
   1.136 +    <tr>
   1.137       <th><a class=property href="#transition-delay">transition-delay</a>
   1.138  
   1.139       <td>&lt;time&gt; [, &lt;time&gt;]*
   1.140  
   1.141       <td>0s
   1.142  
   1.143 -     <td>all elements, :before and :after pseudo elements
   1.144 +     <td>
   1.145  
   1.146       <td>no
   1.147  
   1.148 @@ -1739,7 +1751,7 @@
   1.149  
   1.150       <td>0s
   1.151  
   1.152 -     <td>all elements, :before and :after pseudo elements
   1.153 +     <td>
   1.154  
   1.155       <td>no
   1.156  
   1.157 @@ -1756,7 +1768,7 @@
   1.158  
   1.159       <td>all
   1.160  
   1.161 -     <td>all elements, :before and :after pseudo elements
   1.162 +     <td>
   1.163  
   1.164       <td>no
   1.165  
   1.166 @@ -1765,21 +1777,6 @@
   1.167       <td>visual
   1.168  
   1.169      <tr>
   1.170 -     <th><a class=property href="#transition">transition</a>
   1.171 -
   1.172 -     <td>&lt;single-transition&gt; [ ‘,’ &lt;single-transition&gt; ]*
   1.173 -
   1.174 -     <td>see individual properties
   1.175 -
   1.176 -     <td>all elements, :before and :after pseudo elements
   1.177 -
   1.178 -     <td>no
   1.179 -
   1.180 -     <td>N/A
   1.181 -
   1.182 -     <td>interactive
   1.183 -
   1.184 -    <tr>
   1.185       <th><a class=property
   1.186        href="#transition-timing-function">transition-timing-function</a>
   1.187  
   1.188 @@ -1788,7 +1785,7 @@
   1.189  
   1.190       <td>ease
   1.191  
   1.192 -     <td>all elements, :before and :after pseudo elements
   1.193 +     <td>
   1.194  
   1.195       <td>no
   1.196  
   1.197 @@ -1803,33 +1800,33 @@
   1.198  
   1.199    <ul class=indexlist>
   1.200     <li>combined duration, <a href="#combined-duration"
   1.201 -    title="combined duration"><strong>3.</strong></a>
   1.202 +    title="section 3."><strong>3.</strong></a>
   1.203  
   1.204     <li>&lt;single-transition&gt;, <a href="#single-transition"
   1.205 -    title="&lt;single-transition&gt;"><strong>2.5.</strong></a>
   1.206 +    title="section 2.5."><strong>2.5.</strong></a>
   1.207  
   1.208     <li>&lt;single-transition-property&gt;, <a
   1.209      href="#single-transition-property"
   1.210 -    title="&lt;single-transition-property&gt;"><strong>2.1.</strong></a>
   1.211 +    title="section 2.1."><strong>2.1.</strong></a>
   1.212  
   1.213     <li>&lt;single-transition-timing-function&gt;, <a
   1.214      href="#single-transition-timing-function"
   1.215 -    title="&lt;single-transition-timing-function&gt;"><strong>2.3.</strong></a>
   1.216 +    title="section 2.3."><strong>2.3.</strong></a>
   1.217  
   1.218     <li>transition, <a href="#transition"
   1.219 -    title=transition><strong>2.5.</strong></a>
   1.220 +    title="section 2.5."><strong>2.5.</strong></a>
   1.221  
   1.222     <li>transition-delay, <a href="#transition-delay"
   1.223 -    title=transition-delay><strong>2.4.</strong></a>
   1.224 +    title="section 2.4."><strong>2.4.</strong></a>
   1.225  
   1.226     <li>transition-duration, <a href="#transition-duration"
   1.227 -    title=transition-duration><strong>2.2.</strong></a>
   1.228 +    title="section 2.2."><strong>2.2.</strong></a>
   1.229  
   1.230     <li>transition-property, <a href="#transition-property"
   1.231 -    title=transition-property><strong>2.1.</strong></a>
   1.232 +    title="section 2.1."><strong>2.1.</strong></a>
   1.233  
   1.234     <li>transition-timing-function, <a href="#transition-timing-function"
   1.235 -    title=transition-timing-function><strong>2.3.</strong></a>
   1.236 +    title="section 2.3."><strong>2.3.</strong></a>
   1.237    </ul>
   1.238    <!--end-index-->
   1.239  </html>

mercurial