forked from 3Easy/light
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex-playground.html
127 lines (106 loc) · 4.47 KB
/
index-playground.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>MooresLights™</title>
<!-- Included CSS Files -->
<link rel="stylesheet" href="stylesheets/app.css">
<script src="javascripts/foundation/modernizr.foundation.js"></script>
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!--
<div class="row striplight">
<div class="two columns g"></div>
<div class="two columns y hide-for-small"></div>
<div class="two columns r"></div>
<div class="two columns m hide-for-small"></div>
<div class="two columns b"></div>
<div class="two columns c hide-for-small"></div>
</div>
-->
<div class="stripe">
<div class="g"></div>
<div class="y"></div>
<div class="r"></div>
<div class="m"></div>
<div class="b"></div>
<div class="c"></div>
</div>
<div class="row">
<div class="six columns centered">
<h1 class="hide">CloudLight™</h1>
<img src="images/cloudlight_transparent_1200.png">
</div>
</div>
<div class="row intro">
<div class="six columns centered">
<p>This is a playground for the development of our design ideas. It in no way reflects the final website, but it is a fully responsive base that will be used in production. Because I am awesome, only <em>-webkit</em> prefixes for CSS3 properties have been deployed so far. Please inform me if you use the Firefox, Opera or <em>ahem</em> Intarweb Exploder browser.</p>
</div>
</div>
<div class="row">
<div class="circle"></div>
<div class="three columns offset-by-three">
<p>A circle made of pure CSS, cycling the background colour through red, green and blue using CSS3 animations.</p>
</div>
</div>
<div class="row">
<div class="radial"></div>
<div class="three columns offset-by-six">
<p>CSS radial gradient, solid color to 77%. Less simple to <em>animate</em> colour changes because gradients are rendered as images.</p>
</div>
</div>
<div class="row">
<div class="ring_rgb">
<div class="ring_g"></div>
<div class="ring_b"></div>
<div class="ring_r"></div>
</div>
<div class="three columns offset-by-three">
<p>There is no magic here, this is a demonstration of a technique we won’t use: overlaying opaque rgba() colors.</p>
</div>
</div>
<div class="row">
<div class="pulse_opacity"></div>
<div class="three columns offset-by-six">
<p>A smoother CSS radial gradient with color stops at zero and 100 percent, animating the <em>opacity</em> to make a pulse.</p>
</div>
</div>
<div class="row">
<div class="pulse_scale"></div>
<div class="three columns offset-by-three">
<p>The same CSS radial gradient with color stops at zero and 100 percent, animating <em>scale transformation</em> to make a pulse.</p>
</div>
</div>
<div class="row">
<div class="impress">
<a href="#">Hover</a>
</div>
<div class="three columns offset-by-six">
<p>CSS radial gradient, with button text inside using the Sass darken and lighten color functions, plus a transitional scale on hover.</p>
</div>
</div>
<script src="javascripts/foundation/jquery.js"></script>
<script src="javascripts/foundation/jquery.foundation.accordion.js"></script>
<script src="javascripts/foundation/jquery.foundation.alerts.js"></script>
<script src="javascripts/foundation/jquery.foundation.buttons.js"></script>
<script src="javascripts/foundation/jquery.foundation.forms.js"></script>
<script src="javascripts/foundation/jquery.foundation.mediaQueryToggle.js"></script>
<script src="javascripts/foundation/jquery.foundation.navigation.js"></script>
<script src="javascripts/foundation/jquery.foundation.orbit.js"></script>
<script src="javascripts/foundation/jquery.foundation.reveal.js"></script>
<script src="javascripts/foundation/jquery.foundation.tabs.js"></script>
<script src="javascripts/foundation/jquery.foundation.tooltips.js"></script>
<script src="javascripts/foundation/jquery.placeholder.js"></script>
<script src="javascripts/foundation/app.js"></script>
</body>
</html>