diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/css_animations | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/css/css_animations')
4 files changed, 632 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/css_animations/detecting_css_animation_support/index.html b/files/zh-cn/web/css/css_animations/detecting_css_animation_support/index.html new file mode 100644 index 0000000000..75b845f57e --- /dev/null +++ b/files/zh-cn/web/css/css_animations/detecting_css_animation_support/index.html @@ -0,0 +1,91 @@ +--- +title: 检测CSS动画的支持性 +slug: Web/CSS/CSS_Animations/Detecting_CSS_animation_support +translation_of: Web/CSS/CSS_Animations/Detecting_CSS_animation_support +--- +<p>{{CSSRef}}</p> + +<p>CSS 动画 使仅用CSS属性来使内容呈现动画效果成为一种可能,然而,某些时候CSS动画属性并不能生效,此时,我们希望能够通过javascript代码来实现相似的动画效果。针对此种情况,本文基于Chris Heilmann的 <a href="http://hacks.mozilla.org/2011/09/detecting-and-generating-css-animations-in-javascript/" title="http://hacks.mozilla.org/2011/09/detecting-and-generating-css-animations-in-javascript/">this blog post</a> 对该技术进行了示范。</p> + +<h2 id="CSS动画支持检测">CSS动画支持检测</h2> + +<p>下面的代码将检测CSS动画的支持性是否是有效的。</p> + +<pre class="brush: js">var animation = false, + animationstring = 'animation', + keyframeprefix = '', + domPrefixes = 'Webkit Moz O ms Khtml'.split(' '), + pfx = '', + elm = document.createElement('div'); + +if( elm.style.animationName !== undefined ) { animation = true; } + +if( animation === false ) { + for( var i = 0; i < domPrefixes.length; i++ ) { + if( elm.style[ domPrefixes[i] + 'AnimationName' ] !== undefined ) { + pfx = domPrefixes[ i ]; + animationstring = pfx + 'Animation'; + keyframeprefix = '-' + pfx.toLowerCase() + '-'; + animation = true; + break; + } + } +} +</pre> + +<p>首先先定义几个变量,并通过初始化<code>animation</code> 为false来假设不支持CSS动画属性,先设置animationstring变量为<code>animation并在稍后进行修改。创建一个浏览器前缀的数组用来循环遍历并设置pfx前缀为空字符串。</code> </p> + +<p>然后,检测创建的elm元素的style属性集合中{{ cssxref("animation-name") }} 属性是否被设置,如果被设置,则意味着着浏览器支持CSS animation属性,而不需要加任何前缀,然而到目前,还没有任何浏览器实现(译者:chrome中试验了一下是可以的);</p> + +<p>如果浏览器不支持无前缀的animation,那么animation变量值仍为false,遍历所有可能的浏览器前缀,由于所有的主流浏览器现在都在该属性前加了前缀,因此在<code>AnimationName</code> 前加上前缀即可。</p> + +<p>当代码执行完,如果浏览器不支持CSS animation属性,则返回animation 为false,否则为true。如果animation为true,则所有animation 相关属性名称以及keyframes属性前缀都是检测到的正确的,因此,如果使用firefox,属性名称就是MozAnimation,keyframes前缀就是-moz-,如果使用chrome,属性为<code>WebkitAnimation</code> ,keyframes前缀为 <code>-webkit-。注意,浏览器是不方便在驼峰法和连字符法之间进行切换的。</code></p> + +<h2 id="针对不同浏览器使用正确语法实现动画效果">针对不同浏览器使用正确语法实现动画效果</h2> + +<p>现在可以知道,无论浏览器是否支持CSS animation,均可以实现动画效果。</p> + +<pre class="brush: js">if( animation === false ) { + + // animate in JavaScript fallback + +} else { + elm.style[ animationstring ] = 'rotate 1s linear infinite'; + + var keyframes = '@' + keyframeprefix + 'keyframes rotate { '+ + 'from {' + keyframeprefix + 'transform:rotate( 0deg ) }'+ + 'to {' + keyframeprefix + 'transform:rotate( 360deg ) }'+ + '}'; + + if( document.styleSheets && document.styleSheets.length ) { + + document.styleSheets[0].insertRule( keyframes, 0 ); + + } else { + + var s = document.createElement( 'style' ); + s.innerHTML = keyframes; + document.getElementsByTagName( 'head' )[ 0 ].appendChild( s ); + + } + +} +</pre> + +<p>以上代码主要根据animation的值来进行不同的操作,如果为false,则需要执行javascript脚本来实现动画效果,否则,就用javascript来创建所需要的CSS animation 效果。</p> + +<p>设置animation属性是很简单的,可以在style属性集合中简单的更新它的值。然而,增加keyframes是有难度的,由于它们不能够通过传统的css语法来定义。(虽然这样使得它们更加灵活,但是通过脚本来定义更加不易)</p> + +<p>使用javascript来定义keyframes,需要将其具体语法写为字符串。为了创建keyframes变量,在构建keyframes时要在其所有属性前加前缀,该变量包含完整的所有动画序列所需要的keyframes描述。</p> + +<p>下一个任务是将创建的keyframes添加到实际的CSS中。首先要检查是否在document中存在CSStylesheet,如果存在,则能够简单的将keyframes值插入到CSSstylesheet中。</p> + +<p>如果不存在CSSstylesheet,创建一个新的 {{ HTMLElement("style") }} 元素,并将keyframes设置为其内容。然后将新的{{ HTMLElement("style") }}元素插入到document 的head中,从而将新的style sheet添加到了html文档中。</p> + +<p><a href="https://jsfiddle.net/codepo8/ATS2S/8/embedded/result">在JSFiddle中查看</a></p> + +<h2 id="更多">更多</h2> + +<ul> + <li><a href="/en/CSS/CSS_animations" title="en/CSS/CSS animations">CSS animations</a></li> +</ul> diff --git a/files/zh-cn/web/css/css_animations/index.html b/files/zh-cn/web/css/css_animations/index.html new file mode 100644 index 0000000000..17c3ab84a3 --- /dev/null +++ b/files/zh-cn/web/css/css_animations/index.html @@ -0,0 +1,82 @@ +--- +title: CSS Animations +slug: Web/CSS/CSS_Animations +tags: + - CSS + - CSS Animations + - Experimental + - Overview + - Reference +translation_of: Web/CSS/CSS_Animations +--- +<p>{{CSSRef}}{{SeeCompatTable}}</p> + +<p><strong>CSS Animations</strong> 是CSS的一个模块,它定义了如何用关键帧来随时间推移对CSS属性的值进行动画处理。关键帧动画的行为可以通过指定它们的持续时间,它们的重复次数以及它们如何重复来控制。</p> + +<h2 id="参考">参考</h2> + +<h3 id="CSS_属性">CSS 属性</h3> + +<div class="index"> +<ul> + <li>{{cssxref("animation")}}</li> + <li>{{cssxref("animation-delay")}}</li> + <li>{{cssxref("animation-direction")}}</li> + <li>{{cssxref("animation-duration")}}</li> + <li>{{cssxref("animation-fill-mode")}}</li> + <li>{{cssxref("animation-iteration-count")}}</li> + <li>{{cssxref("animation-name")}}</li> + <li>{{cssxref("animation-play-state")}}</li> + <li>{{cssxref("animation-timing-function")}}</li> +</ul> +</div> + +<h3 id="CSS_At-规则">CSS At-规则</h3> + +<div class="index"> +<ul> + <li>{{cssxref("@keyframes")}}</li> +</ul> +</div> + +<h2 id="指南">指南</h2> + +<dl> + <dt><a href="/en-US/docs/Web/CSS/CSS_Animations/Detecting_CSS_animation_support">检测CSS动画支持</a></dt> + <dd>描述用于检测浏览器是否支持CSS动画的技术。</dd> + <dt><a href="/en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animations">使用CSS动画</a></dt> + <dd>关于如何使用CSS创建动画的分步教程,本文介绍每个相关的CSS属性和规则,并解释它们如何交互。</dd> + <dt><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Tips">CSS 动画提示</a></dt> + <dd>提示和技巧,以帮助您在您的内容中充分利用CSS动画。目前提供了一种用于重播已经运行到完成的动画的技术,这是API本身不支持的。</dd> +</dl> + +<h2 id="规范">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">规范</th> + <th scope="col">进度</th> + <th scope="col">备注</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSS3 Animations') }}</td> + <td>{{ Spec2('CSS3 Animations') }}</td> + <td>初始定义。</td> + </tr> + </tbody> +</table> + +<h2 id="浏览器兼容性">浏览器兼容性</h2> + +<div> +<p>{{Compat("css.properties.animation")}}</p> +</div> + +<h2 id="参考_2">参考</h2> + +<ul> + <li>Related to CSS Animations, <a href="/en-US/docs/Web/CSS/CSS_Transitions">CSS Transitions</a> can trigger animations on user actions.</li> +</ul> diff --git a/files/zh-cn/web/css/css_animations/tips/index.html b/files/zh-cn/web/css/css_animations/tips/index.html new file mode 100644 index 0000000000..86de523b3a --- /dev/null +++ b/files/zh-cn/web/css/css_animations/tips/index.html @@ -0,0 +1,100 @@ +--- +title: CSS Animations tips and tricks +slug: Web/CSS/CSS_Animations/Tips +translation_of: Web/CSS/CSS_Animations/Tips +--- +<div>{{cssref}}</div> + +<p><span class="seoSummary">CSS 动画使得您能够实现一些难以置信的效果点缀您的页面或者应用程序 。 然而, 有些您想实现的东西表现的并不浅显易懂,或者没法使您立马想到一种聪明的解决办法。这篇文章集合一个一些温馨贴士和技巧,从而帮助您更轻松地工作,这其中包括了如何使一个已经停止的动画重新开始播放。</span></p> + +<h2 id="Run_an_animation_again" name="Run_an_animation_again">重新播放动画</h2> + +<p><a href="/en-US/docs/Web/CSS/CSS_Animations">CSS 动画</a>的规范并没有提供使得动画重新激活的方法。在元素上调用<code>resetAnimation()</code> 并不生效,您也不能直接通过设置元素的 {{cssxref("animation-play-state")}}使得动画重新“跑起来”。事实上,你必须使用一些技巧使得已经停止的动画重新播放。</p> + +<p>这有一种我们认为足够稳定和可靠的方法推荐给您。</p> + +<h3 id="HTML_内容">HTML 内容</h3> + +<p>首先,让我们定义一个我们想要添加动画的元素{{HTMLElement("div")}} 以及一个“播放”或“重播”动画的按钮。</p> + +<pre class="brush: html"><div class="box"> +</div> + +<div class="runButton">Click me to run the animation</div></pre> + +<h3 id="CSS_内容">CSS 内容</h3> + +<p>现在我们将使用CSS定义动画本身。为了简洁,有些并不重要的CSS(如“播放”按钮的样式)并没有显示在这里。</p> + +<div class="hidden"> +<pre class="brush: css">.runButton { + cursor: pointer; + width: 300px; + border: 1px solid black; + font-size: 16px; + text-align: center; + margin-top: 12px; + padding-top: 2px; + padding-bottom: 4px; + color: white; + background-color: darkgreen; + font: 14px "Open Sans", "Arial", sans-serif; +}</pre> +</div> + +<pre class="brush: css">@keyframes colorchange { + 0% { background: yellow } + 100% { background: blue } +} + +.box { + width: 100px; + height: 100px; + border: 1px solid black; +} + +.changing { + animation: colorchange 2s; +}</pre> + +<p>这里有两个类。 <code>"box"</code> 类基本表述了box的外观,它不包含任何动画信息。动画的细节包含在<code>"changing"</code> 类, 它描述了名为 <code>"colorchange"</code> 的{{cssxref("@keyframes")}} 应该这持续两秒的时间段播放动画。</p> + +<p>注意,正因为如此,这个box在这里不触发任何动画效果, 因此他不会动起来。</p> + +<h3 id="JavaScript_内容">JavaScript 内容</h3> + +<p>接下来我们将看看 JavaScript的部分如何工作。这里关键的部分在 <code>play()</code> 方法中, 他在用户点击“播放”按钮时被触发。</p> + +<pre class="brush: js">function play() { + document.querySelector(".box").className = "box"; + window.requestAnimationFrame(function(time) { + window.requestAnimationFrame(function(time) { + document.querySelector(".box").className = "box changing"; + }); + }); +}</pre> + +<p>这看起来有点奇怪,不是么?这是因为重新播放动画的唯一方法是删除动画效果,让文档重新计算样式以使得它知道您已经设置了它,然后再将动画效果加回该元素。要实现这个,我们必须更具创造性。 </p> + +<p>这里是<code>play()</code> 方法被调用时发生的事情:</p> + +<ol> + <li>box的CSS类列表被重置为<code>"box"</code> 。这么做的效果是移除了在这个box上的其他类属性, 包括处理动画的 <code>"changing"</code>类。换句话说,我们从box元素上删除了动画效果。然而,改变类属性列表在样式被重新计算完成或者发生刷新事件之前并不会生效。</li> + <li>为了确保样式被重新计算我们使用 {{domxref("window.requestAnimationFrame()")}},同时设置了一个回调。我们的回调在下一次重绘页面之前被调用。问题是由于它在重绘之前被调用,而此时样式还没有被真正重新计算。</li> + <li>我们的回调聪明地调用了<code>requestAnimationFrame()</code> 方法!这一次,回调在下一次重绘之前被调用,这发成在样式被重新计算之后。回调在box元素上添加<code>"changing"</code> 类,使得重绘后重新触发动画。</li> +</ol> + +<p>当然,我们同样需要在“播放”按钮上添加事件处理方法使其生效:</p> + +<pre class="brush: js">document.querySelector(".runButton").addEventListener("click", play, false);</pre> + +<h3 id="结论">结论</h3> + +<p>{{ EmbedLiveSample('Run_an_animation_again', 320, 160) }}</p> + +<h2 id="另见">另见</h2> + +<ul> + <li><a href="/en-US/docs/Web/Guide/CSS/Using_CSS_transitions">Using CSS transitions</a></li> + <li>{{domxref("Window.requestAnimationFrame()")}}</li> +</ul> diff --git a/files/zh-cn/web/css/css_animations/using_css_animations/index.html b/files/zh-cn/web/css/css_animations/using_css_animations/index.html new file mode 100644 index 0000000000..3cdd7cd988 --- /dev/null +++ b/files/zh-cn/web/css/css_animations/using_css_animations/index.html @@ -0,0 +1,359 @@ +--- +title: 使用 CSS 动画 +slug: Web/CSS/CSS_Animations/Using_CSS_animations +tags: + - Advanced + - CSS + - CSS Animations + - Example + - Experimental + - Guide + - Using CSS animations +translation_of: Web/CSS/CSS_Animations/Using_CSS_animations +--- +<p>{{SeeCompatTable}}{{CSSRef}}</p> + +<p><strong>CSS animations </strong>使得可以将从一个CSS样式配置转换到另一个CSS样式配置。动画包括两个部分:描述动画的样式规则和用于指定动画开始、结束以及中间点样式的关键帧。</p> + +<p>相较于传统的脚本实现动画技术,使用CSS动画有三个主要优点:</p> + +<ol> + <li><span style="line-height: 1.5;">能够非常容易地创建简单动画,你甚至不需要了解JavaScript就能创建动画。</span></li> + <li><span style="line-height: 1.5;">动画运行效果良好,甚至在低性能的系统上。渲染引擎会使用跳帧或者其他技术以保证动画表现尽可能的流畅。而使用JavaScript实现的动画通常表现不佳(除非经过很好的设计)。</span></li> + <li style="margin-bottom: 0px;"><span style="line-height: 1.5;">让浏览器控制动画序列,允许浏览器优化性能和效果,如降低位于隐藏选项卡中的动画更新频率。</span></li> +</ol> + +<h2 id="配置动画">配置动画</h2> + +<p>创建动画序列,需要使用{{ cssxref("animation") }}属性或其子属性,该属性允许配置动画时间、时长以及其他动画细节,但该属性不能配置动画的实际表现,动画的实际表现是由 {{ cssxref("@keyframes") }}规则实现,具体情况参见{{anch("使用keyframes定义动画序列")}}小节部分。</p> + +<p style="margin-bottom: 0px;"><span style="line-height: 1.5;">{{ cssxref("animation") }}</span>的子属性有:</p> + +<p style="margin-bottom: 0px;"> </p> + +<dl> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-delay") }}</strong></dt> + <dd>设置延时,即从元素加载完成之后到动画序列开始执行的这段时间。</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-direction") }}</strong></dt> + <dd>设置动画在每次运行完后是反向运行还是重新回到开始位置重复运行。</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-duration") }}</strong></dt> + <dd>设置动画一个周期的时长。</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-iteration-count") }}</strong></dt> + <dd>设置动画重复次数, 可以指定infinite无限次重复动画</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-name") }}</strong></dt> + <dd><span style="line-height: 1.5;">指定由</span>{{ cssxref("@keyframes") }}<span style="line-height: 1.5;">描述的关键帧名称。</span></dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-play-state") }}</strong></dt> + <dd>允许暂停和恢复动画。</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-timing-function") }}</strong></dt> + <dd>设置动画速度, 即通过建立加速度曲线,设置动画在关键帧之间是如何变化。</dd> + <dt><strong style="font-weight: bold;">{{ cssxref("animation-fill-mode") }}</strong></dt> + <dd>指定动画执行前后如何为目标元素应用样式。</dd> +</dl> + +<p style="margin-bottom: 0px;"> </p> + +<h2 id="使用keyframes定义动画序列">使用keyframes定义动画序列</h2> + +<p style="margin-bottom: 0px;">一旦完成动画的时间设置, 接下来就需要定义动画的表现。通过使用{{ cssxref("@keyframes") }}建立两个或两个以上关键帧来实现。每一个关键帧都描述了动画元素在给定的时间点上应该如何渲染。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">因为动画的时间设置是通过CSS样式定义的,关键帧使用{{ cssxref("percentage") }}来指定动画发生的时间点。<code>0%</code>表示动画的第一时刻,<code>100%</code>表示动画的最终时刻。因为这两个时间点十分重要,所以还有特殊的别名:<code>from</code>和<code>to</code>。这两个都是可选的,若<code>from/0%</code>或<code>to/100%</code>未指定,则浏览器使用计算值开始或结束动画。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">也可包含额外可选的关键帧,描述动画开始和结束之间的状态。</p> + +<p style="margin-bottom: 0px;"> </p> + +<h2 id="示例">示例</h2> + +<div class="note"><strong>注意:</strong> <span style="color: #4d4e53; font-style: normal; line-height: 1.5;">这里的示例没有在CSS动画属性上使用任何前缀,Webkit内核浏览器或者早期版本浏览器可能需要前缀,下面的实例包含了<code>-webkit-</code>前缀。</span></div> + +<h3 id="文本滑过浏览器窗口">文本滑过浏览器窗口</h3> + +<p><span style="line-height: 1.5;">该例中{{ HTMLElement("p") }} </span><span style="line-height: 1.5;">元素由浏览器窗口右边滑至左边</span></p> + +<pre class="brush: css">p { + animation-duration: 3s; + animation-name: slidein; +} + +@keyframes slidein { + from { + margin-left: 100%; + width: 300%; + } + + to { + margin-left: 0%; + width: 100%; + } +} +</pre> + +<p style="margin-bottom: 0px;">{{ cssxref("animation-duration") }}属性指定 {{ HTMLElement("p") }} 上的动画从开始到结束耗费3秒,{{ cssxref("@keyframes") }} 指定使用名字为"slidein"的关键帧。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">如果希望在不支持CSS动画的浏览器中使用自定义样式,应该将其写在这里;然而,在该例中,我们不需要除动画效果以外的任何自定义样式。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">关键帧是用{{ cssxref("@keyframes") }}定义的。该例中,我们只使用了两个关键帧。第一个出现在0%(此例中使用了别名<code>from</code>)处,此处元素的左边距为100%(即位于容器的右边界),宽为300%(即容器宽度的3倍),使得在动画的第一帧中标题位于浏览器窗口右边界之外。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">第二帧出现在100%(此例中使用了别名<code>to</code>)。元素的左边距设为0%,宽设为100%,使得动画结束时元素与窗口左边界对齐。</p> + +<pre class="brush: html"><p>The Caterpillar and Alice looked at each other for some time in silence: +at last the Caterpillar took the hookah out of its mouth, and addressed +her in a languid, sleepy voice.</p> +</pre> + +<p>{{EmbedLiveSample("文本滑过浏览器窗口","100%","250")}}</p> + +<h3 id="增加关键帧">增加关键帧</h3> + +<p style="margin-bottom: 0px;">让我们给上面的示例中添加一个关键帧,比如标题的字号先变大然后恢复正常,添加这个关键帧十分简单:</p> + +<p style="margin-bottom: 0px;"> </p> + +<pre class="brush: css">75% { + font-size: 300%; + margin-left: 25%; + width: 150%; +} +</pre> + +<pre class="brush: css hidden">p { + animation-duration: 3s; + animation-name: slidein; +} + +@keyframes slidein { + from { + margin-left: 100%; + width: 300%; + } + + to { + margin-left: 0%; + width: 100%; + } +} +</pre> + +<pre class="brush: html hidden"><p>The Caterpillar and Alice looked at each other for some time in silence: +at last the Caterpillar took the hookah out of its mouth, and addressed +her in a languid, sleepy voice.</p> +</pre> + +<p>在动画序列执行到75%的时候,标题元素的左边距为25%,宽度为150%。</p> + +<p>{{EmbedLiveSample("增加关键帧","100%","250")}}</p> + +<h3 id="重复动画">重复动画</h3> + +<p>{{ cssxref("animation-iteration-count") }}用以指定动画重复的次数,仅仅使用该属性就能使动画重复播放。在该例中,设该属性为<code>infinite</code>以使动画无限重复</p> + +<pre class="brush: css">p { + animation-duration: 3s; + animation-name: slidein; + animation-iteration-count: infinite; +} +</pre> + +<pre class="brush: css hidden">@keyframes slidein { + from { + margin-left: 100%; + width: 300%; + } + + to { + margin-left: 0%; + width: 100%; + } +} +</pre> + +<pre class="brush: html hidden"><p>The Caterpillar and Alice looked at each other for some time in silence: +at last the Caterpillar took the hookah out of its mouth, and addressed +her in a languid, sleepy voice.</p> +</pre> + +<p>{{EmbedLiveSample("重复动画","100%","250")}}</p> + +<h3 id="来回运动">来回运动</h3> + +<p>上面实现了动画的重复播放,但是每次动画开始时总跳回开始位置显得很怪异。我们真正想要的是标题来回滑动,这时只需要设置{{ cssxref("animation-direction") }}属性为<code>alternate</code>。</p> + +<pre class="brush: css">p { + animation-duration: 3s; + animation-name: slidein; + animation-iteration-count: infinite; + animation-direction: alternate; +} +</pre> + +<pre class="brush: css hidden">@keyframes slidein { + from { + margin-left: 100%; + width: 300%; + } + + to { + margin-left: 0%; + width: 100%; + } +} +</pre> + +<pre class="brush: html hidden"><p>The Caterpillar and Alice looked at each other for some time in silence: +at last the Caterpillar took the hookah out of its mouth, and addressed +her in a languid, sleepy voice.</p> +</pre> + +<p>{{EmbedLiveSample("来回运动","100%","250")}}</p> + +<h3 id="使用动画事件">使用动画事件</h3> + +<div>利用动画事件可以更好的控制动画和信息。这些事件由 {{ domxref("event/AnimationEvent", "AnimationEvent") }}对象表示,可探测动画何时开始结束和开始新的循环。每个事件包括动画发生的时间和触发事件的动画名称。</div> + +<div> </div> + +<div>我们将修改滑动文本示例,输出每个动画事件出现时的信息。</div> + +<pre class="brush: css">.slidein { + -moz-animation-duration: 3s; + -webkit-animation-duration: 3s; + animation-duration: 3s; + -moz-animation-name: slidein; + -webkit-animation-name: slidein; + animation-name: slidein; + -moz-animation-iteration-count: 3; + -webkit-animation-iteration-count: 3; + animation-iteration-count: 3; + -moz-animation-direction: alternate; + -webkit-animation-direction: alternate; + animation-direction: alternate; +} + +@-moz-keyframes slidein { + from { + margin-left:100%; + width:300% + } + + to { + margin-left:0%; + width:100%; + } +} + +@-webkit-keyframes slidein { + from { + margin-left:100%; + width:300% + } + + to { + margin-left:0%; + width:100%; + } +} + +@keyframes slidein { + from { + margin-left:100%; + width:300% + } + + to { + margin-left:0%; + width:100%; + } +}</pre> + +<h4 id="添加动画事件监听器">添加动画事件监听器</h4> + +<p>我们使用JavaScript代码监听所有三种可能的动画事件,<code>setup()</code>方法设置事件监听器,当文档第一次加载完成时执行该方法。</p> + +<pre class="brush: js">var e = document.getElementById("watchme"); +e.addEventListener("animationstart", listener, false); +e.addEventListener("animationend", listener, false); +e.addEventListener("animationiteration", listener, false); + +e.className = "slidein"; +</pre> + +<div>以上是非常标准的代码写法,setup()最后设置动画元素的<code>class</code>为slidein,启动动画。</div> + +<div> </div> + +<div>为什么这样做?因为<code>animationstart</code>事件在动画一开始时就被触发,在我们的示例中,该事件在我们的代码执行前就被触发,所以我们自己通过设置元素的的<code>class</code>来启动动画。</div> + +<div> </div> + +<h4 id="接收事件">接收事件</h4> + +<p>事件传递给<code>listener()</code>函数,代码如下所示</p> + +<pre class="brush: js">function listener(e) { + var l = document.createElement("li"); + switch(e.type) { + case "animationstart": + l.innerHTML = "Started: elapsed time is " + e.elapsedTime; + break; + case "animationend": + l.innerHTML = "Ended: elapsed time is " + e.elapsedTime; + break; + case "animationiteration": + l.innerHTML = "New loop started at time " + e.elapsedTime; + break; + } + document.getElementById("output").appendChild(l); +}</pre> + +<p style="margin-bottom: 0px;">这段代码同样非常简单,简单地通过{{ domxref("event.type") }}来判断发生的是何种事件,然后添加对应的注解到{{ HTMLElement("ul") }}中。</p> + +<p style="margin-bottom: 0px;"> </p> + +<p style="margin-bottom: 0px;">输出结果如下所示:</p> + +<p style="margin-bottom: 0px;"> </p> + +<ul> + <li>Started: elapsed time is 0</li> + <li>New loop started at time 3.01200008392334</li> + <li>New loop started at time 6.00600004196167</li> + <li>Ended: elapsed time is 9.234000205993652</li> +</ul> + +<div>注意以上时间非常接近预期时间,但不是完全相等。也要注意在最后一个周期完成后,不会触发<code>animationiteration</code>事件,而触发<code>animationend</code>事件。</div> + +<div> </div> + +<h4 id="HTML代码">HTML代码</h4> + +<p>下面是示例中的用到的HTML代码:</p> + +<pre class="brush: html"><body> + <h1 id="watchme">Watch me move</h1> + <p>This example shows how to use CSS animations to make <code>h1</code> elements + move across the page.</p> + <p>In addition, we output some text each time an animation event fires, so you can see them in action.</p> + <ul id="output"> + </ul> +</body> +</pre> + +<p>{{EmbedLiveSample('使用动画事件', '600', '300')}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li>{{ domxref("AnimationEvent", "AnimationEvent") }}</li> + <li><a href="/en-US/docs/CSS/CSS_animations/Detecting_CSS_animation_support" title="en/CSS/CSS animations/Detecting CSS animation support">Detecting CSS animation support</a></li> + <li><a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transitions">Using CSS transitions</a></li> +</ul> |