forked from tholman/concentrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (74 loc) · 4.69 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
84
85
86
87
88
89
90
91
<!doctype html>
<html>
<head>
<title> Concentrics </title>
<!-- CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css">
<!-- JS -->
<script type="text/javascript" src="js/libs/dat.gui.min.js"></script>
<script type="text/javascript" src="js/Concentrics.js"></script>
</head>
<body>
<!-- Header -->
<div id="info-tab">
<div class="info first">
<b>Concentrics</b> uses concentric circles and alternating colors to create generative styled art. Use your own image to add that personal touch!
<p>
Made by: <a href="http://tholman.com"> Tim Holman </a> - <a href="http://twitter.com/twholman" title="You'll love my tweets, I promise ;)"> @twholman </a>
</p>
</div>
<div class="info">
This has been made using <i> Javascript </i> and the HTML5 <i> canvas </i> element. You can find the source on <a href="http://github.com/tholman/concentrics">Github</a> or read about it on my <a href="http://tholman.com/blog/concentrics/"> blog </a>
<p>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://tholman.com/experiments/html5/concentrics" data-text="Concentrics - a neat generative #html5 + #javascript experiment by @twholman -"> Tweet </a>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftholman.com%2Fexperiments%2Fhtml5%concentrics&send=false&layout=button_count&width=450&show_faces=false&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:107px; height:21px; margin-bottom: -1px;" allowTransparency="true"></iframe>
</p>
</div>
<div id="title">Concentrics</div>
</div>
<div id="back">
<a href="/experiments"> More experiments </a> <span>‹</span>
</div>
<script type="text/javascript" src="js/header.js"></script>
<!-- APP -->
<canvas id='canvas'></canvas>
<script>
Concentrics.init();
var gui = new dat.GUI();
var radiusFolder = gui.addFolder( 'Sizing' );
radiusFolder.add(Concentrics, 'baseRadius', 5, 100).name( 'Size' ).onFinishChange( function(value) { Concentrics.draw() } );
radiusFolder.add(Concentrics, 'randomRadiusVariance', 0, 50).name( 'Randomness' ).onFinishChange( function(value) { Concentrics.draw() } );
radiusFolder.add(Concentrics, 'innerRingSize', 1, 15).step(1).name( 'Inner Rings' ).onFinishChange( function(value) { Concentrics.draw() } );
radiusFolder.add(Concentrics, 'outerRingSize', 1, 15).step(1).name( 'Outer Rings' ).onFinishChange( function(value) { Concentrics.draw() } );
radiusFolder.open();
var spacingFolder = gui.addFolder( 'Spacing' );
spacingFolder.add(Concentrics, 'spacingX', 10, 100).name( 'X' ).onFinishChange( function(value) { Concentrics.draw() } );
spacingFolder.add(Concentrics, 'spacingY', 10, 100).name( 'Y' ).onFinishChange( function(value) { Concentrics.draw() } );
spacingFolder.add(Concentrics, 'randomSpacingVariance', 0, 50).name( 'Randomness' ).onFinishChange( function(value) { Concentrics.draw() } );
spacingFolder.open();
var colorFolder = gui.addFolder( 'Colors' );
colorFolder.addColor(Concentrics, 'innerColor').name( 'Fill Color' ).onFinishChange( function(value) { Concentrics.draw() } );
colorFolder.addColor(Concentrics, 'outerColor').name( 'Stroke Color' ).onFinishChange( function(value) { Concentrics.draw() } );
colorFolder.add(Concentrics, 'alpha', 0, 1).name( 'Alpha' ).onFinishChange( function(value) { Concentrics.draw() } );
colorFolder.open();
gui.add(Concentrics, 'drawSquares').name( 'Use Squares' ).onFinishChange( function(value) { Concentrics.draw() } );
gui.add(Concentrics, 'uploadImage').name( 'Use an Image' );
gui.add(Concentrics, 'clear').name( 'Clear Canvas' );
gui.add(Concentrics, 'draw').name( 'Re-Draw' );
gui.add(Concentrics, 'save').name( 'Save' );
</script>
<!-- Misc -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22825241-1']);
_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>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="http://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script>
</body>
</html>