-
Notifications
You must be signed in to change notification settings - Fork 175
/
demo-video-background.html
133 lines (116 loc) · 5.58 KB
/
demo-video-background.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<title>Time Lapse </title>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/coming-sssoon.css" rel="stylesheet" />
<!-- Fonts -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Grand+Hotel' rel='stylesheet' type='text/css'>
</head>
<body>
<nav class="navbar navbar-transparent navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<img src="images/flags/US.png"/>
English(US)
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="#"><img src="images/flags/DE.png"/> Deutsch</a></li>
<li><a href="#"><img src="images/flags/GB.png"/> English(UK)</a></li>
<li><a href="#"><img src="images/flags/FR.png"/> Français</a></li>
<li><a href="#"><img src="images/flags/RO.png"/> Română</a></li>
<li><a href="#"><img src="images/flags/IT.png"/> Italiano</a></li>
<li class="divider"></li>
<li><a href="#"><img src="images/flags/ES.png"/> Español <span class="label label-default">soon</span></a></li>
<li><a href="#"><img src="images/flags/BR.png"/> Português <span class="label label-default">soon</span></a></li>
<li><a href="#"><img src="images/flags/JP.png"/> 日本語 <span class="label label-default">soon</span></a></li>
<li><a href="#"><img src="images/flags/TR.png"/> Türkçe <span class="label label-default">soon</span></a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#">
<i class="fa fa-facebook-square"></i>
Like
</a>
</li>
<li>
<a href="#">
<i class="fa fa-google-plus-square"></i>
Plus
</a>
</li>
<li>
<a href="#">
<i class="fa fa-pinterest"></i>
Pin
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container -->
</nav>
<div class="main" style="background-image: url('images/video_bg.jpg')">
<video id="video_background" preload="auto" autoplay="true" loop="loop" muted="muted" volume="0">
<source src="http://coming-sssoon.paperplane.io/video/time.webm" type="video/webm">
<source src="http://coming-sssoon.paperplane.io/video/time.mp4" type="video/mp4">
Video not supported
</video>
<!-- Change the image source '/images/video_bg.jpg')" with your favourite image. -->
<div class="cover black" data-color="black"></div>
<!-- You can change the black color for the filter with those colors: blue, green, red, orange -->
<div class="container">
<h1 class="logo cursive">
Time Lapse
</h1>
<!-- H1 can have 2 designs: "logo" and "logo cursive" -->
<div class="content">
<h4 class="motto">Really awesome time lapse of a beautiful city.</h4>
<div class="subscribe">
<h5 class="info-text">
Join the waiting list for the beta. We keep you posted.
</h5>
<div class="row">
<div class="col-md-4 col-md-offset-4 col-sm6-6 col-sm-offset-3 ">
<form class="form-inline" role="form">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail2">Email address</label>
<input type="email" class="form-control transparent" placeholder="Your email here...">
</div>
<button type="submit" class="btn btn-warning btn-fill">Notify Me</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
Made with <i class="fa fa-heart heart"></i> by <a href="http://www.creative-tim.com">Creative Tim</a>. Free download <a href="http://www.creative-tim.com/product/coming-sssoon-page">here.</a>
</div>
</div>
</div>
</body>
<script src="js/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
</html>