forked from williamngan/pts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (71 loc) · 4.27 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Pts.js</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="Pts is a javascript library that enables you to compose and visualize points in spaces.">
<meta name="thumbnail" content="https://ptsjs.org/assets/thumbnail.png" />
<meta property="og:url" content="https://ptsjs.org" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Pts.js" />
<meta property="og:description" content="Pts is a javascript library that enables you to compose and visualize points." />
<meta property="og:image" content="https://ptsjs.org/assets/card_thumbnail.png" />
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@williamngan" />
<link href="./assets/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="./dist/pts.js"></script>
</head>
<body>
<div id="header">
<div id="pts"><span id="header_title">Pts.</span>
<div id="topmenu">
<a href="../demo/index.html"/>demos</a>
<a href="../guide/index.html"/>guides</a>
<a href="../docs/"/>docs</a>
<a href="https://github.com/williamngan/pts"/>github</a>
</div>
</div>
</div>
<div id="board">
<div id="pt"></div>
</div>
<div class="block">
<div class="subcol">
<h3>Connecting the dots</h3>
<!-- <p>A point represents the basic building block, the smallest idea, within a vast conceptual space. </p> -->
<!-- <p>Can you find the Big Dipper in a sky full of stars? Can you discover, through your mind's eyes, invisible points in conceptual spaces too?</p> -->
<!-- <p>Pts helps you connect and express those invisible points — as ideas, shapes, colors, motions, sounds, and more. </p> -->
<p>Pts is about connecting the dots, like seeing the Big Dipper in a sky full of stars, like watching dust afloat in the air illuminated by sunlight, like discovering sparks of insights in your mind.</p>
<p>Pts enables you to compose and visualize these invisible points, and to express what you see in your mind's eyes — points as ideas, shapes, colors, motions, interactions, sounds, and more.</p>
<div class="cta">Get Started</div>
</div>
<div class="subcol">
<h3>A modern javascript library</h3>
<p>Written in typescript and compiled to javascript ES6, Pts is lightweight and modular. It also comes with many useful algorithms for data visualization and creative coding.</p>
<p>You can <a href="#">link it</a> directly like this: <br />
<code><script src="https://unpkg.com/pts/dist/pts.min.js"><script></code></p>
<p>Or use it via <a href="https://www.npmjs.com/package/pts" target="_blank">npm</a> like this: <br />
<code>npm install pts</code>
</p>
<p>Draw a dot that follows the pointer in just <a href="#">1 line of code</a>: <br />
<code>Pts.quickStart("#divId")( t => form.point( space.pointer ) )</code>
</p>
<p>You can use Pts by itself, or in conjunction with other libraries. Here is an example of using Pts with Tensorflow to <a href="#">visualize human pose</a>.</p>
<div class="cta">View Demos</div>
</div>
</div>
<div id="footer">Copyright © 2017-current by <a href="https://twitter.com/williamngan">William Ngan</a> and contributors. Pts is an <a href="https://github.com/williamngan/pts">open source project</a> under Apache License 2.0.</div>
<script type="text/javascript" src="./assets/cover.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104913373-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>