-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsnaptut-line.html
51 lines (38 loc) · 1.38 KB
/
snaptut-line.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Snap.svg Tutorial</title>
<script src="analytics.js" async></script>
</head>
<body>
<link href="/snapstyle.css" rel="stylesheet">
<div id="container"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="snap.svg.js"></script>
<a href="http://snapsvg.io/docs/">Snap Docs</a> <a href="/">More SVG Dabbles</a>
<article>
<h1 class="heading">Basic Test</h1>
<div class="intro">Lets just testing getting a basic shape up and filling it</div>
<pre class="codestuff"><code contenteditable="true">
var s = Snap("#svgout");
var myLine = s.path( 'M10,10 100,100' ).attr({ stroke: "blue" });
var myLen = myLine.getTotalLength();
var tempPoint;
for( var a=0; a< myLen; a+=25 ) {
tempPoint = myLine.getPointAtLength( a );
// s.rect(tempPoint.x, tempPoint.y, 10,10).attr({ fill: 'green' }).transform( 'r' + tempPoint.alpha );
s.text(tempPoint.x, tempPoint.y, '<').transform( 'r' + tempPoint.alpha );
}
</code>
<button class="run">Edit/Run</button>
</pre>
</article>
<div class="intro">SVGout area...</div>
<div class="output">
<svg id="svgout" width="400" height="400"></svg>
</div>
<div class="intro">The actual svg markup looks like this (when you've clicked on run)....</div>
<div id="htmlraw"></div>
<script src="snaptut.js"></script></script>
<script src="hijs.js"></script>
</body>