OpenXのコードを遅延読み込みします。単一ページの呼び出しをページの上部に配置する代わりに、下部に配置します。ページが読み込まれた後、呼び出しはバナーデータを取得し、カスタムコードは正しいゾーンに正しいバナーを追加します。
以下のコードには、適切なDOMが必要です。jQuery、DOMAssistant、FlowJSなどがある場合は、DOMを修正する必要があります。このコードは、画像、フラッシュ、またはHTMLコンテンツを含む通常のバナーで機能します。外部プロバイダーのバナー(広告など)を使用する場合など、動作しない場合があります。そのためには、コードを少しハックする必要があるかもしれません。
それの使い方?
- HTMLコードの最後にSinglePageCallコードを追加します
- このコードをSPCコードの下に追加します。
- 0.5秒ほどで、OpenXコードの準備が整います。以下のコードは、指定されたDIV内にバナーを配置します。
- そうそう、バナーのプレースホルダーとしていくつかのDIVをHTMLコードに追加する必要があります。デフォルトでは、これらのバナーは、DIVを完全に非表示にするCSSクラス「hidden」で設定されています(可視性、表示、および高さ)。次に、特定のDIVのバナーが正常に読み込まれた後、非表示のクラスを削除すると、DIV(およびその中のバナー)が表示されます。
自己責任!:) それが役に立てば幸い
(function(){
if (!document || !document.getElementById || !document.addEventListener || !document.removeClass) {
return; // No proper DOM; give up.
}
var openx_timeout = 1, // limit the time we wait for openx
oZones = new Object(), // list of [div_id] => zoneID
displayBannerAds; // function.
// oZones.<divID> = <zoneID>
// eg: oZones.banner_below_job2 = 100;
// (generated on the server side with PHP)
oZones.banner_top = 23;
oZones.banner_bottom = 34;
displayBannerAds = function(){
if( typeof(OA_output)!='undefined' && OA_output.constructor == Array ){
// OpenX SinglePageCall ready!
if (OA_output.length>0) {
for (var zone_div_id in oZones){
zoneid = oZones[zone_div_id];
if(typeof(OA_output[zoneid])!='undefined' && OA_output[zoneid]!='') {
var flashCode,
oDIV = document.getElementById( zone_div_id );
if (oDIV) {
// if it's a flash banner..
if(OA_output[zoneid].indexOf("ox_swf.write")!=-1)
{
// extract javascript code
var pre_code_wrap = "<script type='text/javascript'><!--// <![CDATA[",
post_code_wrap = "// ]]> -->";
flashCode = OA_output[zoneid].substr(OA_output[zoneid].indexOf(pre_code_wrap)+pre_code_wrap.length);
flashCode = flashCode.substr(0, flashCode.indexOf(post_code_wrap));
// replace destination for the SWFObject
flashCode = flashCode.replace(/ox\_swf\.write\(\'(.*)'\)/, "ox_swf.write('"+ oDIV.id +"')");
// insert SWFObject
if( flashCode.indexOf("ox_swf.write")!=-1 ){
eval(flashCode);
oDIV.removeClass('hidden');
}// else: the code was not as expected; don't show it
}else{
// normal image banner; just set the contents of the DIV
oDIV.innerHTML = OA_output[zoneid];
oDIV.removeClass('hidden');
}
}
}
} // end of loop
}//else: no banners on this page
}else{
// not ready, let's wait a bit
if (openx_timeout>80) {
return; // we waited too long; abort
};
setTimeout( displayBannerAds, 10*openx_timeout );
openx_timeout+=4;
}
};
displayBannerAds();
})();