src/cm/media/js/lib/yui/yui_3.10.3/docs/anim/basic.html
author gibus
Tue, 16 Jul 2013 14:29:46 +0200
changeset 525 89ef5ed3c48b
permissions -rw-r--r--
Upgrades to yui 3.10.3

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Example: Basic Animation</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: Basic Animation</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 animate the <code>opacity</code> of an element.</p>
    <p> Click the X in the header to fade out the element.</p>
</div>

<div class="example">
<div id="demo" class="yui3-module">
    <div class="yui3-hd">
        <h3>Basic Animation</h3>
        <a href="remove.php?id=#demo" title="fade out element" class="yui3-remove"><em>x</em></a>
    </div>
    <div class="yui3-bd">
        <p>Click the X in the header to fade out the element.</p>
    </div>
</div>


<script type="text/javascript">
YUI().use('anim', function(Y) {
    var anim = new Y.Anim({
        node: '#demo',
        to: { opacity: 0 }
    });

    var onClick = function(e) {
        e.preventDefault(); 
        anim.run();
    };

    Y.one('#demo .yui3-remove').on('click', onClick);

});

</script>


</div>

<h2>Setting up the HTML</h2>
<p>First we add some HTML to animate.</p>

<pre class="code prettyprint">&lt;div id=&quot;demo&quot; class=&quot;yui3-module&quot;&gt;
    &lt;div class=&quot;yui3-hd&quot;&gt;
        &lt;h3&gt;Basic Animation&lt;&#x2F;h3&gt;
        &lt;a href=&quot;remove.php?id=#demo&quot; title=&quot;fade out element&quot; class=&quot;yui3-remove&quot;&gt;&lt;em&gt;x&lt;&#x2F;em&gt;&lt;&#x2F;a&gt;
    &lt;&#x2F;div&gt;
    &lt;div class=&quot;yui3-bd&quot;&gt;
        &lt;p&gt;Click the X in the header to fade out the element.&lt;&#x2F;p&gt;
    &lt;&#x2F;div&gt;
&lt;&#x2F;div&gt;</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: &#x27;#demo&#x27;,
    to: { opacity: 0 }
});</pre>


<h2>Handling the Click Event</h2>
<p>Clicking the toggle control should start the animation, so we'll need to handle that click, including preventing the default action of following the url.</p>

<pre class="code prettyprint">var onClick = function(e) {
    e.preventDefault();
    anim.run();
};</pre>


<h2>Running the Animation</h2>
<p>Finally we add an event listener to run the animation.</p>
<pre class="code prettyprint">Y.one(&#x27;#demo .yui3-remove&#x27;).on(&#x27;click&#x27;, onClick);</pre>


<h2>Complete Example Source</h2>
<pre class="code prettyprint">&lt;div id=&quot;demo&quot; class=&quot;yui3-module&quot;&gt;
    &lt;div class=&quot;yui3-hd&quot;&gt;
        &lt;h3&gt;Basic Animation&lt;&#x2F;h3&gt;
        &lt;a href=&quot;remove.php?id=#demo&quot; title=&quot;fade out element&quot; class=&quot;yui3-remove&quot;&gt;&lt;em&gt;x&lt;&#x2F;em&gt;&lt;&#x2F;a&gt;
    &lt;&#x2F;div&gt;
    &lt;div class=&quot;yui3-bd&quot;&gt;
        &lt;p&gt;Click the X in the header to fade out the element.&lt;&#x2F;p&gt;
    &lt;&#x2F;div&gt;
&lt;&#x2F;div&gt;


&lt;script type=&quot;text&#x2F;javascript&quot;&gt;
YUI().use(&#x27;anim&#x27;, function(Y) {
    var anim = new Y.Anim({
        node: &#x27;#demo&#x27;,
        to: { opacity: 0 }
    });

    var onClick = function(e) {
        e.preventDefault(); 
        anim.run();
    };

    Y.one(&#x27;#demo .yui3-remove&#x27;).on(&#x27;click&#x27;, onClick);

});

&lt;&#x2F;script&gt;</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 &#x27;easing effects&#x27; &mdash; for example, when an animation gradually slows down as it nears completion, that&#x27;s an easing effect known as &#x27;ease-in&#x27;.  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&#x27;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: 'basic',
    title: 'Basic Animation',
    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>