-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="conversionFunctions.js"></script>
<script>
$( function() {
$( "#iframe-container" ).resizable({
aspectRatio: 16 / 9,
maxHeight: 600,
maxWidth: 800,
minHeight: 230,
minWidth: 400
});
} );
</script>
</head>
<body>
<div id="outer-container">
<div id="close-button"></div>
<div id="iframe-container">
<iframe id="iframe22" scrolling="no" frameborder="0" src="https://player.vimeo.com/video/309665535?app_id=122963&referrer=https%3A%2F%2Fwww.patreon.com%2FJA%2Fposts" allowfullscreen></iframe>
<!--<iframe id="iframe" scrolling="no" frameborder="0" src="video.mp4" allowfullscreen></iframe>-->
</div>
</div>
</body>
</html>