-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo2.html
77 lines (72 loc) · 2.94 KB
/
video2.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
<!DOCTYPE html>
<html ng-app=exercise>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Video Angular Fun</title>
<meta name="description" content=" a basic html5 video page posting results to node using angular">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/main.css" rel="stylesheet">
<link href="../vendor/foundation/css/normalize.css" rel="stylesheet">
<link href="../vendor/foundation/css/foundation.css" rel="stylesheet">
<link href="../vendor/bootstrap/css/bootstrap.css" rel="stylesheet"</link>
<link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet"</link>
</head>
<body ng-controller=VideoTimeController>
<header class="hero-unit" id="banner">
<div class="container">
<h1>Alttaf Hussain</h1>
<p class="lead">Video Monitor Dashboard written in node.js/express and angular</p>
</div>
</header>
<div class="section">
<div class="row">
<div class="col-lg-3 col-md-4">
</div>
<div class="col-lg-8 col-md-8">
<h1>How to use it</h1>
<p>This is a simple video action tracking page that tracks the video plays and pause using angular</p>
<p>go the the dashboard to see what effect your plays and pauses has <a href="http://mean-video.alttaf.co.uk:9000">dashboard</a></p>
<p>You can also go to the main video page <a href="http://mean-video.alttaf.co.uk">main page</a></p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
</div>
<div class="col-lg-7 col-md-8">
<h1>Video ID: Video2</h1>
</div>
<div class="col-lg-1 col-md-4">
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
</div>
<div class="col-lg-7 col-md-8">
<my-video-manip>
<video class="centre" id="video2">
<source src="mov_bbb.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<button class="btn btn-default move" id="videoButton">play</button>
<button class="btn btn-default" id="videoButton2">pause</button>
</my-video-manip>
</div>
<div class="col-lg-1 col-md-4">
</div>
</div>
<footer class="footer">
<div class="container">
<p>Alttaf Hussain using Angular Fullstack v2.0.13 |
<a href="https://twitter.com/alttafhussain">@AlttafHussain</a>
</p>
</div>
</footer>
<script src="vendor/jquery-2.1.1.min.js"></script>
<script src="vendor/angular/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/directives.js"></script>
</body>
</html>