--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/docs/anim/easing.html Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,291 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Example: Easing Effects</title>
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic">
+ <link rel="stylesheet" href="../../build/cssgrids/cssgrids-min.css">
+ <link rel="stylesheet" href="../assets/css/main.css">
+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
+ <link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
+ <script src="../../build/yui/yui-min.js"></script>
+
+</head>
+<body>
+<!--
+<a href="https://github.com/yui/yui3"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
+-->
+<div id="doc">
+ <div id="hd">
+ <h1><img src="http://yuilibrary.com/img/yui-logo.png"></h1>
+ </div>
+
+
+ <h1>Example: Easing Effects</h1>
+ <div class="yui3-g">
+ <div class="yui3-u-3-4">
+ <div id="main">
+ <div class="content"><link href="../assets/anim/anim.css" rel="stylesheet" type="text/css">
+<div class="intro">
+ <p>This demonstrates how to use the <code>easing</code> attribute to change the behavior of the animation.</p>
+ <p> Click the icon in the header to shrink the element's <code>height</code> to zero with the "backIn" effect.</p>
+</div>
+
+<div class="example">
+<div id="demo" class="yui3-module">
+ <div class="yui3-hd">
+ <h3>Easing Effects</h3>
+ <a title="collapse element" class="yui3-toggle"><em>-</em></a>
+ </div>
+ <div class="yui3-bd">
+ <p>Click the icon in the header to shrink the element's height to zero with the "backIn" effect.</p>
+ </div>
+</div>
+<p>This is placeholder text used to demonstrate how the above animation affects subsequent content.</p>
+
+
+<script type="text/javascript">
+YUI().use('anim', function(Y) {
+ var anim = new Y.Anim({
+ node: '#demo .yui3-bd',
+ to: { height: 0 },
+ easing: 'backIn'
+ });
+
+ var onClick = function(e) {
+ e.preventDefault();
+ anim.run();
+ };
+ Y.one('#demo .yui3-toggle').on('click', onClick);
+
+});
+
+</script>
+
+</div>
+
+<h2>Setting up the HTML</h2>
+<p>First we add some HTML to animate.</p>
+
+<pre class="code prettyprint"><div id="demo" class="yui3-module">
+ <div class="yui3-hd">
+ <h3>Easing Effects</h3>
+ <a title="collapse element" class="yui3-toggle"><em>-</em></a>
+ </div>
+ <div class="yui3-bd">
+ <p>Click the icon in the header to shrink the element's height to zero with the "backIn" effect.</p>
+ </div>
+</div>
+<p>This is placeholder text used to demonstrate how the above animation affects subsequent content.</p></pre>
+
+
+<h2>Creating the Anim Instance</h2>
+<p>Now we create an instance of <code>Y.Anim</code>, passing it a configuration object that includes the <code>node</code> we wish to animate and the <code>to</code> attribute containing the final properties and their values.</p>
+
+<pre class="code prettyprint">var anim = new Y.Anim({
+ node: '#demo .yui3-bd',
+ to: { height: 0 },
+ easing: 'backIn'
+});</pre>
+
+
+<h2>Running the Animation</h2>
+<p>Finally we add an event handler to run the animation.</p>
+<pre class="code prettyprint">var onClick = function(e) {
+ e.preventDefault();
+ anim.run();
+};
+Y.one('#demo .yui3-toggle').on('click', onClick);</pre>
+
+
+<h2>Complete Example Source</h2>
+<pre class="code prettyprint"><div id="demo" class="yui3-module">
+ <div class="yui3-hd">
+ <h3>Easing Effects</h3>
+ <a title="collapse element" class="yui3-toggle"><em>-</em></a>
+ </div>
+ <div class="yui3-bd">
+ <p>Click the icon in the header to shrink the element's height to zero with the "backIn" effect.</p>
+ </div>
+</div>
+<p>This is placeholder text used to demonstrate how the above animation affects subsequent content.</p>
+
+
+<script type="text/javascript">
+YUI().use('anim', function(Y) {
+ var anim = new Y.Anim({
+ node: '#demo .yui3-bd',
+ to: { height: 0 },
+ easing: 'backIn'
+ });
+
+ var onClick = function(e) {
+ e.preventDefault();
+ anim.run();
+ };
+ Y.one('#demo .yui3-toggle').on('click', onClick);
+
+});
+
+</script></pre>
+
+</div>
+ </div>
+ </div>
+
+ <div class="yui3-u-1-4">
+ <div class="sidebar">
+
+
+
+ <div class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Examples</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="examples">
+
+
+ <li data-description="Creating and using a simple animation.">
+ <a href="basic.html">Basic Animation</a>
+ </li>
+
+
+
+ <li data-description="The Animation Utility allows you to implement 'easing effects' — for example, when an animation gradually slows down as it nears completion, that's an easing effect known as 'ease-in'. This example shows you how to use easing effects with your animations.">
+ <a href="easing.html">Easing Effects</a>
+ </li>
+
+
+
+ <li data-description="Color animations can be effective indicators of state during the lifespan of a dynamic page. This example shows you how to animate color attributes of an element.">
+ <a href="colors.html">Animating Colors</a>
+ </li>
+
+
+
+ <li data-description="The direction attribute can be used to reverse the animation on alternate iterations.">
+ <a href="alt-iterations.html">Alternating Iterations</a>
+ </li>
+
+
+
+ <li data-description="This example shows you how to animate the xy coordinates of an element.">
+ <a href="anim-xy.html">Animating XY Position</a>
+ </li>
+
+
+
+ <li data-description="This example demonstrates animating an element along a curved path using bezier control points.">
+ <a href="curve.html">Animating Along a Curved Path</a>
+ </li>
+
+
+
+ <li data-description="The reverse attribute allows you to change the run direction of an animation.">
+ <a href="reverse.html">Reversing an Animation</a>
+ </li>
+
+
+
+ <li data-description="This example demonstrates how to use the end event.">
+ <a href="end-event.html">Using the End Event</a>
+ </li>
+
+
+
+
+
+
+
+
+ </ul>
+ </div>
+ </div>
+
+
+
+ <div class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Examples That Use This Component</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="examples">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <li data-description="Working with multiple YUI instances.">
+ <a href="../yui/yui-multi.html">Multiple Instances</a>
+ </li>
+
+
+
+ <li data-description="Shows how to create a simple plugin to animate the Overlay's movement and visibility.">
+ <a href="../overlay/overlay-anim-plugin.html">Animation Plugin</a>
+ </li>
+
+
+
+ <li data-description="How to make an animated node a Drop target.">
+ <a href="../dd/anim-drop.html">Animated Drop Targets</a>
+ </li>
+
+
+ </ul>
+ </div>
+ </div>
+
+ </div>
+ </div>
+ </div>
+</div>
+
+<script src="../assets/vendor/prettify/prettify-min.js"></script>
+<script>prettyPrint();</script>
+
+<script>
+YUI.Env.Tests = {
+ examples: [],
+ project: '../assets',
+ assets: '../assets/anim',
+ name: 'easing',
+ title: 'Easing Effects',
+ newWindow: '',
+ auto: false
+};
+YUI.Env.Tests.examples.push('basic');
+YUI.Env.Tests.examples.push('easing');
+YUI.Env.Tests.examples.push('colors');
+YUI.Env.Tests.examples.push('alt-iterations');
+YUI.Env.Tests.examples.push('anim-xy');
+YUI.Env.Tests.examples.push('curve');
+YUI.Env.Tests.examples.push('reverse');
+YUI.Env.Tests.examples.push('end-event');
+YUI.Env.Tests.examples.push('yui-multi');
+YUI.Env.Tests.examples.push('overlay-anim-plugin');
+YUI.Env.Tests.examples.push('anim-drop');
+
+</script>
+<script src="../assets/yui/test-runner.js"></script>
+
+
+
+</body>
+</html>