-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
53 lines (50 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<title>XSplit JS Framework</title>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/index.css"></style>
<link rel="import" href="polymer_elements/navbar/navbar.html">
</head>
<body>
<xsplit-navbar></xsplit-navbar>
<div id="wrap">
<div id="overlay">
<div id="logo-big"></div>
<div id="subtitle">The development framework for building awesome XSplit Broadcaster Plugins</div>
<div id="buttons">
<button id="getStarted"></button>
<button id="download"><div id="buttonText">XJS version 2.10.2</div></button>
</div>
<div><button id="alternate">Download minified version</button></div>
</div>
</div>
<div id="copyright">
<span>
© 2020 <strong>SplitmediaLabs,</strong> Ltd. All Rights Reserved.
<span id="links">
<a href="https://xspl.it/">XSplit</a> <span>|</span>
<a href="https://xspl.it/developers">XSplit Developers</a>
</span>
</span>
</div>
<script>
document.getElementById('getStarted').addEventListener('click', function(e) {
if (e.which === 1) {
location.href = 'quickstart.html';
}
});
document.getElementById('download').addEventListener('click', function(e) {
if (e.which === 1) {
window.location = 'https://cdn2.xsplit.com/xjs/download/xjs.js';
}
});
document.getElementById('alternate').addEventListener('click', function(e) {
if (e.which === 1) {
window.location = 'https://cdn2.xsplit.com/xjs/download/xjs.min.js';
}
});
</script>
</body>
</html>