-
Notifications
You must be signed in to change notification settings - Fork 7
/
desktop-example-integration.html
74 lines (56 loc) · 1.83 KB
/
desktop-example-integration.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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
adSSetup = {
view: "d",
partners: true,
adPlacements: ["superbanner", "sky", "billboard", "mrec", "mrec_btf", "mrec_btf_2", "mrec_btf_3", "inpage"],
adSlotSizes: {
"superbanner": [{
"minWidth": 1,
"sizes": [[728, 90], [728, 600], [1000, 600]]
}],
"sky": [{
"minWidth": 1,
"sizes": [[160, 600], [120, 600], [300, 600], [500, 1000], [1000, 1000]]
}],
"billboard": [{
"minWidth": 799,
"sizes": [[800, 250]]
}, {
"minWidth": 969,
"sizes": [[970, 250], [800, 250]]
}],
"mrec": [{
"minWidth": 1,
"sizes": [[300, 250], [300, 600]]
}],
"mrec_btf": [{
"minWidth": 1,
"sizes": [[300, 250], [300, 600]]
}],
"mrec_btf_2": [{
"minWidth": 1,
"sizes": [[300, 250], [300, 600]]
}],
"mrec_btf_3": [{
"minWidth": 1,
"sizes": [[300, 250], [300, 600]]
}],
"inpage": [{
"minWidth": 1,
"sizes": [[1, 1], [640, 360], [1000, 300]]
}]
}
}
</script>
<script type="text/javascript" src="https://www.example-cdn.com/assets/js/mywebsite.js"></script>
</head>
<body>
<div id="superbannerWrapper" class="container">
<div id="superbanner"></div>
</div>
<!-- here goes your content -->
</body>
</html>