-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (48 loc) · 2.32 KB
/
index.html
File metadata and controls
70 lines (48 loc) · 2.32 KB
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Refresh" content=""; url=index.html">
<title>WebCam-GifMaker</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="contentarea">
<div class="logo">
<img src="img/belive_logo.png" alt="">
</div>
<h1>
capture your video here
</h1>
<div class="camera">
<video id="video">Video stream not available.</video>
</div>
<div class="container">
<div class="row">
<div class="form-group col-xs-6" >
<button id="startbutton"><i class="fa fa-camera-retro" aria-hidden="true"> TAKE
PHOTOS</i></button>
<button id="makegif" onclick="createGIF()"> <i class="fa fa-video-camera" aria-hidden="true">
GET GIF</i></button>
<button id="btn"><i class="fa fa-download" aria-hidden="true"> DOWNLOAD</i></button>
</div>
</div>
</div>
<canvas id="canvas"></canvas>
<div id="parent"> <img id="photo" class="same1" alt="The screen capture will appear in this box.">
<img id="photo1" class="same1">
<img id="photo2" class="same1">
<img id="photo3" class="same1">
<img id="photo4" class="same1">
</div>
<h1 id="h1"><i class="fa fa-video-camera" aria-hidden="true">
</i>Click on GET GIF to Create your GIF</h1>
<img id="animatedGIF" class="same2" alt="">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gifshot/0.3.2/gifshot.min.js"
integrity="sha512-OT6U7ptIUN7rEyChuKitiUp4AdwmF/hAiSa516rtEwbuOnzalSZwmsV7Zazu8EImfCr+dROGVWHj6YM434SN+g=="
crossorigin="anonymous"></script>
</body>
</html>