首先在 html5 横幅上没有更多的 clickTAG 变量。
Html5 横幅是某种富媒体内容,与老式的 Flash 横幅有点不同。
我们在富媒体(Flash 或 html)中有“退出”概念,而不是 clickTag
对于 html5 Rich Media,步骤如下:
您应该将退出按钮添加为带有一些 id 的 div 标签,例如:
<div id="exit_button"> Click to Learn More </div>
然后,您应该添加处理退出的函数并为其关联一个名称(此名称稍后将在 DoubleClick Studio UI 中使用)。
function bgExitHandler(e) {
Enabler.exit('Background Exit');
}
3.绑定div标签点击事件的功能
document.getElementById('exit_button').addEventListener('click', bgExitHandler, false);
但请记住,在第一步之前,您应该已经添加并初始化了“启动器”:
<script src="https://s0.2mdn.net/ads/studio/Enabler.js"></script>
`// If true, start function. If false, listen for INIT.
window.onload = function() {
if (Enabler.isInitialized()) {
enablerInitHandler();
} else {
Enabler.addEventListener(studio.events.StudioEvent.INIT, enablerInitHandler);
}
}
function enablerInitHandler() {
// Start ad, initialize animation,
// load in your image assets, call Enabler methods,
// and/or include other Studio modules.
// Also, you can start the Polite Load
}`
有关如何创建 html5 横幅的完整指南,请参阅以下链接。
https://support.google.com/richmedia/answer/2672545?hl=en&ref_topic=2672541&vid=1-635799307124943767-943471333&rd=1