-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·448 lines (238 loc) · 12.4 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if IE 9]> <html class="no-js ie9" lang="en"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js" lang="en" itemscope itemtype="http://schema.org/Product"> <!--<![endif]-->
<head>
<!-- Meta tags & title /-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>CODECLOUDER: the Codename for the Wink-to-Viral App (Invite Only)</title>
<meta name="description" content="A network of thinkers who can make apps go viral with the wink of an eye by leveraging CodeCloud.me technology" />
<meta name="keywords" content="wink, viral wink, viral blink app, blink to go viral, codeclouder, viral, viral app" />
<meta name="author" content="weAre">
<!-- Favicon /-->
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" /> <!-- Favicon /-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<!-- Stylesheets /-->
<link rel="stylesheet" href="css/gumby.css"> <!-- Gumby Framework /-->
<link rel="stylesheet" href="css/style.css"> <!-- Main stylesheet /-->
<link rel="stylesheet" href="css/component.css"> <!-- Flexslider - Thumbs Icon /-->
<link rel="stylesheet" href="css/owl.carousel.css"> <!-- Owl Carousel /-->
<link rel="stylesheet" href="css/animate.css"> <!-- Animations /-->
<script src="js/modernizr-2.6.2.min.js"></script> <!-- Modernizr /-->
</head>
<body>
<!-- Preload the Whole Page -->
<div id="preloader">
<div id="loading-animation"> </div>
</div>
<!-- NAVIGATION ############################################### -->
<div class="cbp-af-header">
<nav class="row">
<!-- Share DIV-->
<div class="right" style="display:none">
<a class="button">Share</a>
<div class="social-ico" style="display:none;">
<!-- Facebook Share Button-->
<!--<iframe src="/www.facebook.com/plugins/like.php?href=http%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Freference%2Fplugins%2Flike&width=450&height=46&colorscheme=light&layout=button_count&action=like&show_faces=true&send=true" style="border:none; overflow:hidden; width:170px; height:20px;" ></iframe>-->
<!-- Twitter Share Button -->
<!--<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
-->
</div> <!-- End class social-ico div -->
</div> <!-- End Share dIV -->
<!-- Logo -->
<div id="logo">
<h2 style="font-size:24px; color:white">CODECLOUDER</h2>
</div>
<!-- Links -->
<ul id="nav" style="display:none" >
<li><a href="#">Contact</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</div>
<!-- END NAVIGATION ############################################### -->
<!-- HEADER ############################################### -->
<section class="page1">
<!-- Huge Title centered -->
<div class="huge-title">
<div class="logo-phone centered"><h2 style="font-size:24px; color:white">CODECLOUDER</h2></div> <!-- This Logo is only displayed on Tablet/iPhone !-->
<h2>Wink your eye. Viral app created. Literally.</h2>
</div>
<!-- Little text on bottom with arrow -->
<div class="go-down">
<p>How It Works</p>
<img src="img/go-down.png" alt="Go Down">
</div>
</section>
<!-- END HEADER ############################################### -->
<!-- BEGIN CONTAINER ############################################### -->
<div id="container" class="container">
<!-- FIRST SECTION ############################################### -->
<section class="cbp-so-section page2">
<div class="row">
<div class="six columns article make-it-appear-left">
<!-- Title -->
<h3>Hold the app up to your face. The app scans your eye as you blink.</h3>
<!-- Content -->
<p>Based on your eye movement, we generate content in the cloud that is unique to your personality. It might sound crazy, but a viral app is generated from this process. There are no other hoops to jump through. Zero coding lessons. Zero cost. Millions of users.</p>
<div class="space"></div>
<!-- Ico of Brand -->
<ul class="brand">
<li> <!-- There's a tooltip on the first icon -->
<a class="has-tooltip" href="#">
<span class="tooltip"><span>Currently Only On Apple Product</span></span>
<img src="img/apple.png" alt="Apple Ico">
</a>
</li>
<li><img src="img/android.png" style="opacity:0.2;" alt="Android Ico"></li>
<li><img src="img/windows.png" style="opacity:0.2;" alt="Windows Ico"></li>
</ul>
</div>
<!-- Image from right -->
<div class="iphone make-it-appear-right" >
<img src="img/iphone.png" alt="EXEMPLE">
</div>
</div> <!-- End row div -->
</section>
<!-- END FIRST SECTION ############################################### -->
<!-- SECOND SECTION ############################################### -->
<!-- END SECOND SECTION ############################################### -->
<!-- TIRTH SECTION ############################################### -->
<section class="cbp-so-section page4">
<div class="row">
<!-- Left Side -->
<div class="six columns make-it-appear-left">
<div class="space"></div>
<!-- Title -->
<h4>How can we gaurantee millions of users?</h4>
<!-- Content -->
<p>
We have developed intelligent technology that can create an app that is instantly viral. Our solution encompasses the latest studies in human psychology, social media analysis, and even cat videos.
</p>
<div class="space"></div>
<img src="img/ipad2.png" alt="EXEMPLE">
</div>
<!-- Right Side -->
<div class="six columns make-it-appear-right" >
<img src="img/ipad.png" alt="EXEMPLE">
<div class="space"></div>
<!-- Title -->
<h4>So, an app is made based on my wink?</h4>
<!-- Content -->
<p>It might sound like a joke, or even impossible. However, the team at CodeCloud.me has taken crowdsourced app development truly to another level. Unfortunately, we can't share it with everyone.</p>
</div>
</div> <!-- End row div -->
</section>
<!-- END TIRTH SECTION ############################################### -->
<!-- TESTIMONIALES SECTION ############################################### -->
<section id="testimonial">
<div class="row">
<!-- Slider 1 : Pictures !-->
<div class="four columns testblock flexslider make-it-appear-left" id="slider1" >
<ul class="slides">
<li><img src="img/portraits/1.png" alt=""> <!-- set client 1 photo here !--></li>
<li><img src="img/portraits/2.png" alt=""> <!-- set client 2 photo here !--></li>
<li><img src="img/portraits/3.png" alt=""> <!-- set client 3 photo here !--></li>
<!--to add more client, copy the above li element and change the image-->
</ul>
</div> <!-- Columns end !-->
<!-- Slider 2 : TEXT !-->
<div class="eight columns flexslider make-it-appear-right" id="slider2">
<ul class="slides">
<li>
<h5 class="title">Marissa Small</h5> <!-- set client 1 name here !-->
<div class="sub">Hacking Shakespeare Organizer | CodeCloud.me Director of Happiness</div> <!--set the source here-->
<div class="textblock"> <!-- set client 1 testimonial here !-->
<p>The community leader bringing hackers from around the world together on CodeCloud.me</p>
</div>
</li>
<li>
<h5 class="title">Luke Fitzpatrick</h5> <!-- set client 2 name here !-->
<div class="sub">Growth Hacker Extrodinaire</div> <!--set the source here-->
<div class="textblock"> <!-- set client 1 testimonial here !-->
<p>The most kick-ass startup marketing guru you've never met.</p>
</div>
</li>
<li>
<h5 class="title">Mike De'Shazer</h5> <!-- set client 3 name here !-->
<div class="sub">Super Developer | A.I. Hacker</div> <!--set the source here-->
<div class="textblock"> <!-- set client 1 testimonial here !-->
<p>The creator of over 50 apps and founder of CodeCloud.me</p>
</div>
</li>
<!--to add more testimonial, duplicate the li element and write them below -->
</ul>
</div> <!-- Columns end !-->
</div> <!-- End Row !-->
</section>
<!-- END TESTIMONIALES SECTION ############################################### -->
<!-- SUBSCRIBE SECTION ############################################### -->
<section class="cbp-so-section page5">
<div id="signup" class="row">
<!-- Article centered on the Page -->
<div class="article twelve columns centered make-it-appear-top">
<!--<img src="img/appstore.png" alt="appstore">-->
<div class="space"></div>
<!-- Title -->
<h4>Our coming beta release is invite-only. </h4>
<!-- Content -->
<!-- Begin the Form -->
<form action="javascript:requestAccess()">
<!-- Input of E-Mail -->
<div class="seven columns">
<input name="email" class="email" type="text" id="myEmail" placeholder="Your E-Mail">
</div>
<!-- Send Button -->
<div class="five columns">
<button name="send" type="submit" class="button" id="theReq">Request Access</button>
</div>
<!-- End of the Form -->
</form>
<!-- Text Promise we do not spam -->
</div>
</div>
</section>
<!-- END SUBSCRIBE SECTION ############################################### -->
</div> <!-- end of container -->
<script src="js/jquery.js"></script>
<script src="js/main.js" type="text/javascript"></script> <!-- Main Javascript File -->
<script src="js/plugins.js" type="text/javascript"></script> <!-- Plugins File for Contact Form -->
<script src="js/classie.js" type="text/javascript"></script> <!-- Scroll from left & right -->
<script src="js/jquery.flexslider.js" type="text/javascript"></script> <!-- FlexSlider -->
<script src="js/owl.carousel.js" type="text/javascript"></script> <!-- Owl Carousel -->
<script src="js/waypoints.min.js" type="text/javascript"></script> <!-- Waypoints -->
<script src="js/jquery.backgroundvideo.js" type="text/javascript"></script> <!-- Video Background -->
<script src="js/mediaCheck.js" type="text/javascript"></script> <!-- MediaCheck -->
<script>
function requestAccess(){
if(validateEmail($('#myEmail').val()) ==false){
alert("please send a valid e-mail");
return;
}
$('#theReq').html('adding you...');
var toEmail = $('#myEmail').val();
var toSubject= "Your CodeClouder Request";
var toBody = "No further action is required. We are reviewing e-mail signups and will send updates as they become available. <br><br>--CodeCloud team "
$.post('https://www.codecloud.me/cloud/api/email/index.php?callback=?',
{
'action':'sendMail',
'toEmail':toEmail,
'toSubject':toSubject,
'toHTML':toBody,
'beta':'true'
}, function(req){
$('#theReq').html('Request Sent.');
})
}
function validateEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}
</script>
</body>
</html>