-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtempl.html
35 lines (34 loc) · 1.07 KB
/
btempl.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
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<script src="frame.js"></script>
<script src="adcode.js"></script>
<script src="gcreative.js"></script>
<script src="event.js"></script>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="Content-Type" content="text/html; charset=<tag:charset />">
<style>
.outer{
height: 500px;
position: absolute;
left: 10%;
border: 1px solid;
width: 500px;
}
</style>
</head>
<body>
<div class = "outer" id="wrapper-box">
<script>
onDOMLoad(document, attachEvent);
var iFrameElement = createAndAttachIFrame();
var adCode = getAdcode();
try {
var frameDocument = iFrameElement.contentWindow.document;
frameDocument.open();
frameDocument.write(adCode);
frameDocument.close();
} catch (e) {
console.error(e);
}
</script>
</div>
</body></html>