src/cm/media/js/lib/yui/yui_3.10.3/docs/graphics/graphics-path.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 Path</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 Path</h1>
    <div class="yui3-g">
        <div class="yui3-u-3-4">
            <div id="main">
                <div class="content"><style scoped>
#custom-doc { width: 95%; min-width: 950px; }
#pagetitle {background-image: url(../../assets/bg_hd.gif);}
#mygraphiccontainer {
    position: relative;
    width: 700px;
    height:300px;
}
</style>
<div class="intro">
<p>This example shows how to draw shapes and line segments with the <code>Path</code> shape.</p>
</div>
<div class="example">
<div id="mygraphiccontainer"></div>
<script>
    YUI().use('graphics', function (Y) 
    { 
        var mygraphic = new Y.Graphic({render: "#mygraphiccontainer"}),
            connector = mygraphic.addShape({
                type: "path",
				stroke: {
					weight: 1,
					color: "#000",
					opacity: 1,
					dashstyle: [3, 4]
				},
				id: "connector"
            }),
            diamond1 = mygraphic.addShape({
                type: "path",
                stroke: {
                    weight: 1,
                    color: "#000"
                },
                fill: {
                    color: "#f00"
                },
                id: "diamond1"
            }),
            diamond2 = mygraphic.addShape({
                type: "path",
                stroke: {
                    weight: 1,
                    color: "#000"
                },
                fill: {
                    color: "#f00"
                },
                id: "diamond2"
            });

            diamond1.moveTo(60, 60);
            diamond1.lineTo(80, 40);
            diamond1.lineTo(100, 60);
            diamond1.lineTo(80, 80);
            diamond1.lineTo(60, 60);
            diamond1.end();

			connector.moveTo(100, 60);
            connector.lineTo(450, 220);
            connector.end();

            diamond2.moveTo(450, 220);
            diamond2.lineTo(470, 200);
            diamond2.lineTo(490, 220);
            diamond2.lineTo(470, 240);
            diamond2.lineTo(450, 220);
            diamond2.end();
    });
</script>

</div>

<h2>HTML</h2>
<pre class="code prettyprint">&lt;div id=&quot;mygraphiccontainer&quot;&gt;&lt;&#x2F;div&gt;</pre>


<h2>CSS</h2>
<pre class="code prettyprint">#mygraphiccontainer {
    position: relative;
    width: 700px;
    height:300px;
}</pre>


<h2>Javascript</h2>
<p>Create a <code>Graphic</code> instance.</p>
<pre class="code prettyprint">var mygraphic = new Y.Graphic({render:&quot;#mygraphiccontainer&quot;});</pre>


<p>Create two path elements for end shapes. Give each a red fill and a black stroke.</p>

<pre class="code prettyprint">var diamond1 = mygraphic.addShape({
        type: &quot;path&quot;,
        stroke: {
            weight: 1,
            color: &quot;#000&quot;
        },
        fill: {
            color: &quot;#f00&quot;
        }
    });

var diamond2 = mygraphic.addShape({
        type: &quot;path&quot;,
        stroke: {
            weight: 1,
            color: &quot;#000&quot;
        },
        fill: {
            color: &quot;#f00&quot;
        }
    });</pre>

<p>Create a path for the connecting segment. Give it a black dashed stroke and no fill. The <code>dashstyle</code> property of the stroke attribute allows for the creation of a dashed stroke. The first value is 
the length of the dash and the second value is the gap space between dashes.</p>
<pre class="code prettyprint">var connector = mygraphic.addShape({
        type: &quot;path&quot;,
        stroke: {
            weight: 1,
            color: &quot;#000&quot;,
            opacity: 1,
            dashstyle: [3, 4]
        }
    });</pre>

<p>Draw the first diamond.</p>

<pre class="code prettyprint">diamond1.moveTo(60, 60);
diamond1.lineTo(80, 40);
diamond1.lineTo(100, 60);
diamond1.lineTo(80, 80);
diamond1.lineTo(60, 60);
diamond1.end();</pre>

<p>Draw the connector segment.</p>
<pre class="code prettyprint">connector.moveTo(100, 60);
connector.lineTo(450, 220);
connector.end();</pre>


<p>Draw the second diamond.</p>
<pre class="code prettyprint">diamond2.moveTo(450, 220);
diamond2.lineTo(470, 200);
diamond2.lineTo(490, 220);
diamond2.lineTo(470, 240);
diamond2.lineTo(450, 220);
diamond2.end();</pre>

<h2>Complete Example Source</h2>
<pre class="code prettyprint">&lt;div id=&quot;mygraphiccontainer&quot;&gt;&lt;&#x2F;div&gt;
&lt;script&gt;
    YUI().use(&#x27;graphics&#x27;, function (Y) 
    { 
        var mygraphic = new Y.Graphic({render: &quot;#mygraphiccontainer&quot;}),
            connector = mygraphic.addShape({
                type: &quot;path&quot;,
				stroke: {
					weight: 1,
					color: &quot;#000&quot;,
					opacity: 1,
					dashstyle: [3, 4]
				},
				id: &quot;connector&quot;
            }),
            diamond1 = mygraphic.addShape({
                type: &quot;path&quot;,
                stroke: {
                    weight: 1,
                    color: &quot;#000&quot;
                },
                fill: {
                    color: &quot;#f00&quot;
                },
                id: &quot;diamond1&quot;
            }),
            diamond2 = mygraphic.addShape({
                type: &quot;path&quot;,
                stroke: {
                    weight: 1,
                    color: &quot;#000&quot;
                },
                fill: {
                    color: &quot;#f00&quot;
                },
                id: &quot;diamond2&quot;
            });

            diamond1.moveTo(60, 60);
            diamond1.lineTo(80, 40);
            diamond1.lineTo(100, 60);
            diamond1.lineTo(80, 80);
            diamond1.lineTo(60, 60);
            diamond1.end();

			connector.moveTo(100, 60);
            connector.lineTo(450, 220);
            connector.end();

            diamond2.moveTo(450, 220);
            diamond2.lineTo(470, 200);
            diamond2.lineTo(490, 220);
            diamond2.lineTo(470, 240);
            diamond2.lineTo(450, 220);
            diamond2.end();
    });
&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="Shows how to create a Graphic instance and add shapes.">
                                            <a href="graphics-simple.html">Basic Graphics Implementation</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows how to draw lines and polygons.">
                                            <a href="graphics-path.html">Basic Path</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows how to create linear and radial gradient fills.">
                                            <a href="graphics-gradients.html">Create Gradient Fills</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows how to add drag to a shape.">
                                            <a href="graphics-drag.html">Basic drag with graphic object</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows how to apply transforms to shape.">
                                            <a href="graphics-transforms.html">Using Transforms</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows how to use a custom shape with the Graphics module.">
                                            <a href="graphics-customshape.html">Custom Shape</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows to use the graphics api to draw a realistic glass.">
                                            <a href="graphics-muddyglass.html">Transparent Glass with Shadow</a>
                                        </li>
                                    
                                
                                    
                                        <li data-description="Shows to use the graphics api to draw a violin.">
                                            <a href="graphics-violin.html">Complex Drawing: Violin</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="This example demonstrates animating an element along a curved path using bezier control points.">
                                            <a href="../anim/curve.html">Animating Along a Curved Path</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/graphics',
    name: 'graphics-path',
    title: 'Basic Path',
    newWindow: '',
    auto:  false 
};
YUI.Env.Tests.examples.push('graphics-simple');
YUI.Env.Tests.examples.push('graphics-path');
YUI.Env.Tests.examples.push('graphics-gradients');
YUI.Env.Tests.examples.push('graphics-drag');
YUI.Env.Tests.examples.push('graphics-transforms');
YUI.Env.Tests.examples.push('graphics-customshape');
YUI.Env.Tests.examples.push('graphics-muddyglass');
YUI.Env.Tests.examples.push('graphics-violin');
YUI.Env.Tests.examples.push('curve');

</script>
<script src="../assets/yui/test-runner.js"></script>



</body>
</html>