-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Video Preview!</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="http://www.longtailvideo.com/content/ova/flowplayer/flowplayer-3.2.6.min.js"></script>
<link rel="stylesheet" href="http://releases.flowplayer.org/5.5.0/skin/minimalist.css">
</head>
<body>
<div id="player" style="width: 300px; height: 250px;float:left;"></div>
<div id="companion" style="width:300px;height:250px;float:left;margin-left:5px;background:#F1F1F1;border:1px solid red;"></div>
<script type='text/javascript'>
flowplayer("player", "http://www.longtailvideo.com/content/ova/flowplayer/flowplayer-3.2.7.swf", {
"plugins": {
"ova": {
"url": "http://www.longtailvideo.com/content/ova/flowplayer/ova-1.1.0.swf",
"debug": { "levels": "fatal,config,vast_template,vpaid,http_calls" },
"autoPlay": true,
"ads": {
"companions": {
"regions": [{ "id":"companion", "width":300, "height":250 }]
},
"schedule": [
{
"position": "pre-roll",
"tag": "http://ad.doubleclick.net/pfadx/N270.132652.1516607168321/B3442378.3;dcadv=1379578;sz=0x0;ord=3577745;dcmt=text/xml"
}
]
}
}
}
});
</script>
</body>
</html>