-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
524 lines (502 loc) · 17.4 KB
/
index3.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>React - Bootstrap Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="css/compiled/theme.css">
<link rel="stylesheet" type="text/css" href="css/vendor/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/vendor/animate.css">
<!-- javascript -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<script src="js/theme.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="home3">
<div class="st-container">
<nav class="nav-menu">
<h3>Menu</h3>
<a href="index.html" class="item">
Home 1 (Static)
</a>
<a href="index2.html" class="item">
Home 2 (Slider)
</a>
<a href="features.html" class="item">
Features
</a>
<a href="services.html" class="item">
Services
</a>
<a href="pricing.html" class="item">
Pricing Charts
</a>
<a href="charts.html" class="item">
Comparison tables
</a>
<a href="aboutus.html" class="item">
About us
</a>
<a href="contactus.html" class="item">
Contact us
</a>
<a href="gallery.html" class="item">
Gallery
</a>
<a href="portfolio.html" class="item">
Portfolio
</a>
<a href="blog.html" class="item">
Blog
</a>
<div class="social">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
<a href="#">
<i class="fa fa-facebook"></i>
</a>
<a href="#">
<i class="fa fa-google-plus"></i>
</a>
<a href="#">
<i class="fa fa-youtube-play"></i>
</a>
</div>
</nav>
<div class="st-pusher">
<div class="st-content">
<header class="navbar navbar-inverse hero" role="banner">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">React</a>
</div>
<div class="sidebar-toggle">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</header>
<div id="hero">
<div id="cover-image" class="animated fadeIn">
<div class="container">
<h1 class="hero-text animated fadeIn">The best interfaces for your web and mobile apps.</h1>
<div class="cta animated fadeIn">
<a href="signup.html" class="button">Sign up free</a>
<a href="#" data-toggle="modal" data-target="#demo" class="demo">Watch a demo</a>
</div>
<div class="screenshot animated fadeInUp">
<img src="images/ss2.png" class="img-responsive" alt="screenshot" />
</div>
</div>
</div>
</div>
<div id="tabs">
<div class="container">
<div class="row header">
<div class="col-md-12">
<h3>Accomplish more with React</h3>
<p>Choose your favorite formats for your own sites</p>
</div>
</div>
<div class="row">
<div class="col-md-12 tabs-wrapper">
<ul class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Upstart your development</a></li>
<li><a href="#profile" data-toggle="tab">Get ready in half the time</a></li>
<li><a href="#messages" data-toggle="tab">Collaborate with everyone</a></li>
<li><a href="#settings" data-toggle="tab">Get more done faster</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="home">
<div class="col-md-6 info">
<h4>You don't need to have any advanced technical</h4>
<p>
Whether you want to fill this paragraph with some text like I'm doing right now, this place is perfect to describe some features or anything you want - React has a complete solution for you.
</p>
<p>
You have complete control over the look & feel of your website, we offer the best quality so you take your site up and running in no time.
</p>
</div>
<div class="col-md-6 image">
<img src="images/tabs/pic1.png" class="img-responsive" alt="pic1" />
</div>
</div>
<div class="tab-pane fade" id="profile">
<div class="col-md-6 image">
<img src="images/portfolioitem1.png" class="img-responsive" alt="pic2" />
</div>
<div class="col-md-6 info">
<h4>You don't need to have any advanced technical</h4>
<p>
Whether you want to fill this paragraph with some text like I'm doing right now, this place is perfect to describe some features or anything you want - React has a complete solution for you.
</p>
</div>
</div>
<div class="tab-pane fade" id="messages">
<div class="col-md-6 info">
<h4>You don't need to have any advanced technical</h4>
<p>
Whether you want to fill this paragraph with some text like I'm doing right now, this place is perfect to describe some features or anything you want - React has a complete solution for you.
</p>
<p>
You have complete control over the look & feel of your website, we offer the best quality so you take your site up and running in no time.
</p>
</div>
<div class="col-md-6 image">
<img src="images/tabs/pic2.png" class="img-responsive" style="position: relative;top: 15px;" alt="pic3" />
</div>
</div>
<div class="tab-pane fade" id="settings">
<div class="col-md-6 image">
<img src="images/tabs/pic1.png" class="img-responsive" alt="pic4" />
</div>
<div class="col-md-6 info">
<h4>You don't need to have any advanced technical</h4>
<p>
Whether you want to fill this paragraph with some text like I'm doing right now, this place is perfect to describe some features or anything you want - React has a complete solution for you.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="pricing">
<div class="container">
<div class="row header">
<div class="col-md-12">
<h3>Free trial. No contract. Cancel when you want.</h3>
<p>All plans include a 7-day free trial</p>
</div>
</div>
<div class="row charts">
<div class="col-md-4">
<div class="chart first">
<div class="quantity">
<span class="dollar">$</span>
<span class="price">29</span>
<span class="period">/month</span>
</div>
<div class="plan-name">Freelance</div>
<div class="specs">
<div class="spec">
<span class="variable">5</span>
team members
</div>
<div class="spec">
<span class="variable">Digital</span>
recurring billing
</div>
<div class="spec">
<span class="variable">Virtual</span>
online terminal
</div>
<div class="spec">
<span class="variable">10</span>
total products
</div>
<div class="spec">
<span class="variable">1.0%</span>
Transaction fee
</div>
</div>
<a class="btn-signup button-clear" href="signup.html">
<span>Start free trial</span>
</a>
</div>
</div>
<div class="col-md-4">
<div class="chart featured">
<div class="popular">Most popular</div>
<div class="quantity">
<span class="dollar">$</span>
<span class="price">79</span>
<span class="period">/month</span>
</div>
<div class="plan-name">Profesional</div>
<div class="specs">
<div class="spec">
<span class="variable">15</span>
team members
</div>
<div class="spec">
<span class="variable">Digital</span>
recurring billing
</div>
<div class="spec">
<span class="variable">Virtual</span>
online terminal
</div>
<div class="spec">
<span class="variable">15</span>
total products
</div>
<div class="spec">
<span class="variable">0.5%</span>
Transaction fee
</div>
</div>
<a class="btn-signup button-clear" href="signup.html">
<span>Start free trial</span>
</a>
</div>
</div>
<div class="col-md-4">
<div class="chart last">
<div class="quantity">
<span class="dollar">$</span>
<span class="price">119</span>
<span class="period">/month</span>
</div>
<div class="plan-name">Premium</div>
<div class="specs">
<div class="spec">
<span class="variable">Unlimited</span>
team members
</div>
<div class="spec">
<span class="variable">Digital</span>
recurring billing
</div>
<div class="spec">
<span class="variable">Virtual</span>
online terminal
</div>
<div class="spec">
<span class="variable">25</span>
total products
</div>
<div class="spec">
<span class="variable">No</span>
Transaction fee
</div>
</div>
<a class="btn-signup button-clear" href="signup.html">
<span>Start free trial</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="second-option">
<div class="container">
<div class="row">
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/creditcard.png" alt="creditcard" />
<strong>Act locally, work globally</strong>
<p>You can work with international customers right out of the box while you can keep staying in your country.</p>
</div>
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/dev.png" alt="dev" />
<strong>Act globally, work as usual</strong>
<p>With some customization you can make this product apply to your branding guidelines and amaze your customers at the same time.</p>
</div>
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/globe.png" alt="globe" />
<strong>Develop once, run everywhere</strong>
<p>We don't impose any design restrictions, you are free to customize it as you see fit and it's easy to use.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/support.png" alt="support" />
<strong>Act globally, work as usual</strong>
<p>We're always happy to offer support if you happen to have any doubts about anything, if you need
some new stuff contact us.</p>
</div>
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/mail.png" alt="mail" />
<strong>Develop once, run everywhere</strong>
<p>We'll be adding some new stuff to make it even more awesome, if you have any idea please let us know.</p>
</div>
<div class="col-md-4 feature">
<img src="images/circle-icons/one-color/locked.png" alt="locked" />
<strong>Act locally, work globally</strong>
<p>This thing will work on any device, it has a very easy to understand documentation and is made with SASS.</p>
</div>
</div>
</div>
</div>
<div id="mobile">
<div class="container">
<div class="row">
<div class="col-xs-6 hidden-xs">
<img src="images/ss3.png" class="device img-responsive" alt="mobile" />
</div>
<div class="col-sm-6 col-xs-12">
<div class="info">
<h3>Available in the Appstore</h3>
<p>
With some customization you can make this product apply to your branding guidelines and amaze your customers at the same time.
</p>
<a class="app-store" href="#">
<img src="images/app-store.png" alt="download on app-store" />
</a>
</div>
</div>
</div>
</div>
</div>
<div id="grid-first">
<div class="container">
<div class="row header">
<h3>Need an easy way to customize your site?</h3>
<p>
React is perfect for novice developers and experts alike.
</p>
</div>
<div class="row sections">
<div class="col-md-4">
<div class="section">
<div class="pic">
<img src="images/services2.png" class="img-responsive" alt="services1" />
</div>
<div class="info">
<strong>Awesome mobile app</strong>
<p>
You can work with international customers right out of the box while staying in your country.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="section">
<div class="pic">
<img src="images/services4.png" class="img-responsive" alt="services2" />
</div>
<div class="info">
<strong>Awesome mobile app</strong>
<p>
You can work with international customers right out of the box while staying in your country.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="section">
<div class="pic">
<img src="images/services3.png" class="img-responsive" alt="services3" />
</div>
<div class="info">
<strong>Awesome mobile app</strong>
<p>
You can work with international customers right out of the box while staying in your country.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="cta">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="form-wrapper">
<h4>Ready to start? Create your free account now</h4>
<form class="form-inline" role="form">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your name">
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Password">
</div>
<button type="submit" class="button button-small">Sign Up</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="row">
<div class="col-sm-3 copyright">
React LLC 2014
</div>
<div class="col-sm-6 menu">
<ul>
<li>
<a href="features.html">Features</a>
</li>
<li>
<a href="services.html">Services</a>
</li>
<li>
<a href="pricing.html">Pricing</a>
</li>
<li>
<a href="support.html">Support</a>
</li>
<li>
<a href="blog.html">Blog</a>
</li>
</ul>
</div>
<div class="col-sm-3 social">
<a href="#">
<img src="images/social/social-tw.png" alt="twitter" />
</a>
<a href="#">
<img src="images/social/social-dbl.png" alt="dribbble" />
</a>
</div>
</div>
</div>
</div>
</div><!-- end .st-content -->
</div><!-- end .st-pusher -->
</div><!-- end .st-container -->
<div class="modal fade" id="demo">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<iframe src='http://player.vimeo.com/video/22439234' width='650' height='370' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
// Makes the demo video appear/disappear
var $demo = $("#demo");
$('#demo').on('hidden.bs.modal', function () {
$demo.find("iframe").remove();
})
$('#demo').on('show.bs.modal', function () {
if (!$demo.find("iframe").length) {
$demo.find(".modal-body").append("<iframe src='http://player.vimeo.com/video/22439234' width='650' height='370' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>")
}
});
// triggers the off-canvas panel
$(".sidebar-toggle").click(function (e) {
e.stopPropagation();
$(".st-container").toggleClass("nav-effect");
});
$(".st-pusher").click(function () {
$(".st-container").removeClass("nav-effect");
});
// parallax header
$('#cover-image').css("background-position", "50% 50%");
$(window).scroll(function() {
var scroll = $(window).scrollTop(),
slowScroll = scroll/4,
slowBg = 50 - slowScroll;
$('#cover-image').css("background-position", "50% " + slowBg + "%");
});
});
</script>
</body>
</html>