forked from processing/p5.js-website-OLD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
59 lines (48 loc) · 2.86 KB
/
index.php
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
<!DOCTYPE html>
<?php include('header.php'); ?>
<body id="home-page">
<!-- <div id="home-sketch"></div>
<div id="credits"><em>Adventure in Mountains</em><br>by <a target=_blank href="http://www.liuchangitp.com">Chang Liu</a></div>
-->
<?php include('heading.php'); ?>
<!-- content sections -->
<div class="column-span">
<ul id="menu" class="top_menu" >
<li><a href="<?php echo getRoot(); ?>download/">Download</a></li>
<object width="0" height="0" type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="separator-design-element">*</object>
<li><a href="<?php echo getRoot(); ?>get-started/">Start</a></li>
<object width="0" height="0" type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="separator-design-element">*</object>
<li><a href="<?php echo getRoot(); ?>reference/">Reference</a></li>
<object width="0" height="0" type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="separator-design-element">*</object>
<li><a href="<?php echo getRoot(); ?>libraries/">Libraries</a></li>
<object width="0" height="0" type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="separator-design-element">*</object>
<li><a href="<?php echo getRoot(); ?>learn/">Learn</a></li>
<object width="0" height="0" type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="separator-design-element">*</object>
<li><a href="<?php echo getRoot(); ?>contribute/">Contribute</a></li>
</ul>
<section id="home">
<p><a href="http://hello.p5js.org">Hello!</a> p5.js is a JavaScript library that starts with the original goal of
<a href="http://processing.org">Processing</a>, to make coding accessible
for artists, designers, educators, and beginners, and reinterprets this for today’s web.
</p>
<p>Using the original metaphor of a software sketchbook, p5.js has a full set of
drawing functionality. However, you’re not limited
to your drawing canvas, you can think of your whole browser page as your sketch!
For this, p5.js has addon <a href="libraries/">libraries</a> that make it
<a href="http://hello.p5js.org">
easy to interact</a> with other HTML5
objects, including text, input, video, webcam, and sound.</p>
<p>p5.js is a new interpretation, not an emulation or port, and it is in active development.
An official editing environment is coming soon, as well as many more features!</p>
</section>
<?php include('footer.php'); ?>
</div><!-- end column-span -->
<!-- outside of column for footer to go across both -->
<p class="clearfix"> </p>
<object type="image/svg+xml" data="img/thick-asterisk-alone.svg" id="asterisk-design-element">
*<!-- to do: add fallback image in CSS -->
</object>
<?php include('end.php'); ?>
<script type="text/javascript" src="js/wave.js"></script>
</body>
</html>