-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html~
More file actions
74 lines (59 loc) · 2.16 KB
/
index.html~
File metadata and controls
74 lines (59 loc) · 2.16 KB
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
---
layout: default
---
<div class="home">
<div id="splashHeader">
<h1 id="splashTitle">hello class</h1>
</div>
<div id="splashNav">
<a id="splashButton" href="/about/">let's learn Arduino + Processing</a>
</div>
<script src="/js/vendor/modernizr-2.6.2.min.js"></script>
<div id="splashDiv">
<canvas id="splashCanvas" data-processing-sources="/assets/pde/hello_processing/hello_processing.pde"
width="700" height="700">
<p>Your browser does not support the canvas tag.</p>
</canvas>
<noscript>
<p>JavaScript is required to view the contents of this page.</p>
</noscript>
</div>
<script src="/js/splash.js" type="text/javascript"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/js/vendor/jquery-1.10.1.min.js"><\/script>')</script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script src="/js/vendor/bootstrap.min.js"></script>
<script src="/js/vendor/spectrum.js"></script>
<script src="/js/vendor/processing.min.js"></script>
<script src="/js/plugins.js"></script>
<script src="/js/main.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-40016511-1']);
_gaq.push(['_setDomainName', 'hello.processing.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<style type="text/css">
#credit { position: relative; }
#credit-content {
position: absolute; bottom: 0; left: 0;
font-size: 12px;
letter-spacing: -.3px;
color: #828282;
}
</style>
<div id="credit" style="height:750px">
<div id="credit-content">
<div align="right" style="width:780px">
<b>animation credit:</b><br />
<a href="http://processingjs.org">PROCESSINGJS.ORG HEADER</a><br>
MIT License - F1lT3R/Hyper-Metrix
</div>
</div>
</div>
</div>