我们正在使用 OpenX 在许多网站上投放广告。但是,如果 OpenX 服务器出现问题,它会阻止这些站点上的页面加载。我宁愿让网站优雅地失败,即加载没有广告的页面,并在它们可用时填写它们。
我们正在使用 OpenX 的单页调用,并且我们在 CSS 中为 div 提供了明确的大小,因此它们可以在没有内容的情况下进行布局,但仍然加载脚本会阻止页面加载。是否有其他使用 OpenX 加速页面的最佳实践?
我们正在使用 OpenX 在许多网站上投放广告。但是,如果 OpenX 服务器出现问题,它会阻止这些站点上的页面加载。我宁愿让网站优雅地失败,即加载没有广告的页面,并在它们可用时填写它们。
我们正在使用 OpenX 的单页调用,并且我们在 CSS 中为 div 提供了明确的大小,因此它们可以在没有内容的情况下进行布局,但仍然加载脚本会阻止页面加载。是否有其他使用 OpenX 加速页面的最佳实践?
我们在 iframe 中加载广告以避免您遇到的问题。我们将 div 和 iframe 的大小设置为相同,iframe 指向仅包含广告片段的页面(您可以将区域和其他必需选项作为参数传递给该页面)。
干杯
李
我们延迟加载 OpenX 的代码。我们没有将单页调用放在页面顶部,而是将其放在底部。页面加载后,调用将获取横幅数据,自定义代码将在正确的区域添加正确的横幅。
下面的代码需要一个合适的 DOM。如果你有 jQuery、DOMAssistant、FlowJS 等,应该为你修复 DOM。此代码适用于带有图像、flash 或 HTML 内容的普通横幅。它在某些情况下可能不起作用,例如使用来自外部提供商(广告等)的横幅时。为此,您可能需要稍微修改一下代码。
如何使用它?
使用风险自负!:) 希望能帮助到你
(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();
})();
在@Rafa 出色的回答之后,我正在使用此代码在页面加载后调用 OpenX 横幅。我也在使用 jquery,并且必须为 flash 横幅使用的“document.write”添加一个新的替换调用,并将其替换为“$('#"+ oDIV.id +"').append”。我正在使用自定义的“my_openx()”调用来替换“OA_show()”。我的横幅区域由 zone_id 调用,并被包裹在一个 div 中,如下所示:
<div id="openx-4"><script>wm_openx(4);</script></div>
它正在工作:)
<script type="text/javascript">
$is_mobile = false;
$document_ready = 0;
$(document).ready(function() {
$document_ready = 1;
if( $('#MobileCheck').css('display') == 'inline' ) {
$is_mobile = true;
//alert('is_mobile: '+$is_mobile);
}
});
function wm_openx($id) {
if($is_mobile) return false;
if(!$document_ready) {
setTimeout(function(){ wm_openx($id); },1000);
return false;
}
if(typeof(OA_output[$id])!='undefined' && OA_output[$id]!='') {
var flashCode,
oDIV = document.getElementById('openx-'+$id);
if (oDIV) {
// if it's a flash banner..
if(OA_output[$id].indexOf("ox_swf.write")!=-1) {
// extract javascript code
var pre_code_wrap = "<script type='text/javascript'><!--// <![CDATA[",
post_code_wrap = "// ]]> -->";
flashCode = OA_output[$id].substr(OA_output[$id].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 +"')");
flashCode = flashCode.replace(/document.write/, "$('#"+ oDIV.id +"').append");
// insert SWFObject
if( flashCode.indexOf("ox_swf.write")!=-1 ) {
//alert(flashCode);
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[$id];
//oDIV.removeClass('hidden');
}
}
}
//OA_show($id);
}
</script>
我一直在寻找这个仅在广告应该可见时才从我的 openX 服务器加载广告。我正在使用加载在 div 中的 iFrame 版本的 openX。这里的答案让我走上了解决这个问题的道路,但是发布的解决方案有点太简单了。首先,当页面没有从顶部加载时(如果用户通过单击“返回”进入页面),则不会加载任何 div。所以你需要这样的东西:
$(document).ready(function(){
$(window).scroll(lazyload);
lazyload();
});
此外,您需要知道什么定义了可见的 div。这可以是一个完全可见或部分可见的 div。如果对象的底部大于或等于窗口的顶部并且对象的顶部小于或等于窗口的底部,则它应该是可见的(或者在这种情况下:已加载)。您的函数lazyload 可能如下所示:
function lazyload(){
var wt = $(window).scrollTop(); //* top of the window
var wb = wt + $(window).height(); //* bottom of the window
$(".ads").each(function(){
var ot = $(this).offset().top; //* top of object (i.e. advertising div)
var ob = ot + $(this).height(); //* bottom of object
if(!$(this).attr("loaded") && wt<=ob && wb >= ot){
$(this).html("here goes the iframe definition");
$(this).attr("loaded",true);
}
});
}
在所有主要浏览器甚至我的 iPhone 上测试过,就像一个魅力!
OpenX 有一些关于如何使其标签异步加载的文档:http: //docs.openx.com/ad_server/adtagguide_synchjs_implementing_async.html
我已经对其进行了测试,它在当前的 Chrome/Firefox 中运行良好。
它需要对他们的广告代码进行一些手动调整。他们关于广告代码应该如何结束的示例:
<html>
<head></head>
<body>
Some content here.
Ad goes here.
<!-- Preserve space while the rest of the page loads. -->
<div id="placeholderId" style="width:728px;height:90px">
<!-- Fallback mechanism to use if unable to load the script tag. -->
<noscript>
<iframe id="4cb4e94bd5bb6" name="4cb4e94bd5bb6"
src="http://d.example.com/w/1.0/afr?auid=8&target=
_blank&cb=INSERT_RANDOM_NUMBER_HERE"
frameborder="0" scrolling="no" width="728"
height="90">
<a href="http://d.example.com/w/1.0/rc?cs=
4cb4e94bd5bb6&cb=INSERT_RANDOM_NUMBER_HERE"
target="_blank">
<img src="http://d.example.com/w/1.0/ai?auid=8&cs=
4cb4e94bd5bb6&cb=INSERT_RANDOM_NUMBER_HERE"
border="0" alt=""></a></iframe>
</noscript>
</div>
<!--Async ad request with multiple parameters.-->
<script type="text/javascript">
var OX_ads = OX_ads || [];
OX_ads.push({
"slot_id":"placeholderId",
"auid":"8",
"tid":"4",
"tg":"_blank",
"r":"http://redirect.clicks.to.here/landing.html",
"rd":"120",
"rm":"2",
"imp_beacon":"HTML for client-side impression beacon",
"fallback":"HTML for client-side fallback"
});
</script>
<!-- Fetch the Tag Library -->
<script type="text/javascript" src="http://d.example.com/w/1.0/jstag"></script>
Some other content here.
</body>
</html>