-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
52 lines (52 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video-MME: Welcome</title>
<link rel="icon" href="./static/images/video-mme.png">
<!-- External Libraries and Stylesheets -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/overlayscrollbars/1.13.1/css/OverlayScrollbars.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato|Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<!-- External Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/ScrollTrigger.min.js"></script>
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="static/css/styles.css">
<script src="static/js/scripts.js"></script>
<style>
#paper, #download, #team, #explore, #stats {
display: none;
}
html, body {
overflow: hidden;
}
</style>
</head>
<body>
<script>
document.addEventListener('click', function() {
window.location.href = 'home_page.html';
});
</script>
<div id="loading-screen"></div>
<div id="content">
<!-- Navbar Section -->
<header class="header">
<div class="header-top" style="top: 30%;">
<div class="logo" style="font-family: 'CustomFont', sans-serif; font-size: 300px;">Video-MME</div>
<div class="please-scroll-2" style="top: 130%;">
<span id="reminder" style="font-size: 40px;">The First-Ever Comprehensive Evaluation Benchmark of </span>
<span id="reminder" style="font-size: 40px;">Multi-modal LLMs in Video Analysis </span>
</div>
</div>
<div class="please-scroll">
<span id="reminder">Please click to continue!</span>
</div>
</header>
<nav id="navigation-left"></nav>
</div>
</body>
</html>