-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (71 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="bumper">
<h2>There should be a horizontal scroll area just below</h2>
</div>
<section class="container" id="mySection">
<div class="space-holder">
<div class="sticky">
<div class="horizontal">
<section role="feed" class="cards">
<div class="home-portfolio">
<div class="video-outer" style="width: 45vw;">
<div class="video">
<video src="assets/video1.mp4" loop muted autoplay playsinline></video>
</div>
</div>
</div>
<div class="home-portfolio">
<div class="video-outer" style="width: 37.5vw;">
<div class="video">
<video src="assets/video2.mp4" loop muted autoplay playsinline></video>
</div>
</div>
</div>
<div class="home-portfolio">
<div class="video-outer" style="width: 12.5vw;">
<div class="video">
<video src="assets/video3.mp4" loop muted autoplay playsinline></video>
</div>
</div>
</div>
</section>
</div>
<div class="content-boxes">
<div class="progress_container">
<div class="progress">
<div class="bar" id="progressBar"></div>
</div>
</div>
<div class="content-boxes-inner">
<div class="box">
<h4>Frame-accurate comments</h4>
<p><span>View feedback on a precise video frame—or across a sequence.</span></p>
</div>
<div class="box">
<h4>Annotations</h4>
<p><span>Clearly illustrate your ideas with a simple drawing.</span></p>
</div>
<div class="box">
<h4>Approvals</h4>
<p><span>Get comments and approvals in real time from anyone, anywhere.</span></p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="bumper">
<h2>Scroll up to see a horizontal scroll section</h2>
</div>
<script src="script-2.js"></script>
</body>
</html>