-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
36 lines (28 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scrawl-canvas</title>
<link rel='icon' type='image/png' href='/favicon.png'>
<link href="demo/css/normalize.css" rel="stylesheet" />
<link href="demo/css/tests.css" rel="stylesheet" />
</head>
<body>
<h1>Welcome to the Scrawl-canvas code base</h1>
<p>Scrawl-canvas is a JavaScript library for working with the HTML5 <canvas> element. The library:</p>
<ul>
<li>Automatically discovers existing <canvas> elements in a web page.</li>
<li>Can add new <canvas> elements to the web page.</li>
<li>Defines a set of factory functions for creating a wide range of graphic artefacts and effects, which can be drawn on a canvas.</li>
<li>Includes an adaptable - yet easy to use - protocol for positioning, displaying and animating artefacts and effects across the canvas.</li>
<li>Adds functionality to make <canvas> elements responsive, adapting their size according to their surrounding environment.</li>
<li>Makes the canvas both accessible, and interactive - including the ability to easily track user interactions with different parts of the canvas.</li>
</ul>
<p>These test demos and documentation are for <b>Scrawl-canvas v8.14.0</b></p>
<h4>Download and installation</h4>
<p><a href="https://github.com/KaliedaRik/Scrawl-canvas">See GitHub for details</a> on how to add Scrawl-canvas to a project.</p>
<p>See the local <a href="docs/index.html">documentation</a> and <a href="demo/index.html">Demo pages</a> for examples of how to use Scrawl-canvas in your project.</p>
</body>
</html>