如何实施HTML5 DoubleClick ClickTag?
我创建了一个html5横幅并在此处进行了验证:https://h5validator.appspot.com/dcm。
它返回错误:“缺少点击标签检查”。
我如何实施clickTag? 我在谷歌支持上发现了这个代码:
<html>
<head>
<meta name="ad.size" content="width=300,height=250">
<script type="text/javascript">
var clickTag = "http://www.google.com";
</script>
</head>
<body>
<a href="javascript:window.open(window.clickTag)">
<img src="images/dclk.png" border=0>
</a>
</body>
</html>
但是,在DoubleClick中上传ZIP文件后,不是设置横幅广告的目标网址吗?
我必须在HTML中设置硬编码的目标URL吗? 对我没有任何意义..
过去我制作了很多Flash广告,并且只提到一个变量_root.clickTag。
谁能帮我吗?
谢谢
为了创建doubleclick工作室横幅,您需要导入doubleclick工作室库和初始化启用程序。 然后设置Exit_url。 您可以轻松地在Google Web Designer中创建横幅,并直接上传到DC Studio
<script src="https://s0.2mdn.net/ads/studio/Enabler.js"></script>
<style>html, body {width: 100%; height: 100%}
#bg-exit {
background-color: rgba(255,255,255,0);
cursor: pointer;
height: 381px; //banner height
left: 0px;
position: absolute;
top: 19px;
width: 400px; //banner width
z-index: 1;
}</style>
<div id="bg-exit"></div> <!-- put this div inside your main container of banner -->
<script>
window.onload = function() {
if (Enabler.isInitialized()) {
enablerInitHandler();
} else {
Enabler.addEventListener(studio.events.StudioEvent.INIT, enablerInitHandler);
}
}
function enablerInitHandler() {
}
function bgExitHandler(e) {
Enabler.exit('Background Exit');
}
document.getElementById('bg-exit').addEventListener('click', bgExitHandler, false);
</script>
使用此代码,您可以动态更改DC Studio的exit_url
链接地址: http://www.djcxy.com/p/32307.html