我使用Buzzy Script作为我的网站和buzzy脚本支持预加载页面 当用户转到发布时,在该页面中加载新帖子,用户可以在一个页面中查看100个帖子,并在一个页面上加载100个adsense广告 http://buzzy.akbilisim.com/news/cute-or-creepy-avatar-babies-are-freaking-the-internet-out 什么是Adsense预加载政策呢????? / adsense没有阻止我的帐户???
答案 0 :(得分:0)
响应式AdSense广告(另一种方法)
无论您将数据广告格式设置为“自动”,“垂直”还是“水平”还是纵向,Google AdSense算法仍会决定投放哪个广告。例如,如果你要求一个矩形,你可能会得到一个中矩形或一个大矩形。
如果您希望强制AdSense在保持响应的同时投放特定尺寸的广告,您可以考虑自定义尺寸的广告。这些广告的大小是根据屏幕确定的,但发布商可以更好地控制所投放的横幅尺寸。
<div id="google-ads-1"></div>
<script type="text/javascript">
/* Calculate the width of available ad space */
ad = document.getElementById('google-ads-1');
if (ad.getBoundingClientRect().width) {
adWidth = ad.getBoundingClientRect().width; // for modern browsers
} else {
adWidth = ad.offsetWidth; // for old IE
}
/* Replace ca-pub-XXX with your AdSense Publisher ID */
google_ad_client = "ca-pub-XXX";
/* Replace 1234567890 with the AdSense Ad Slot ID */
google_ad_slot = "1234567890";
/* Do not change anything after this line */
if ( adWidth >= 728 )
google_ad_size = ["728", "90"]; /* Leaderboard 728x90 */
else if ( adWidth >= 468 )
google_ad_size = ["468", "60"]; /* Banner (468 x 60) */
else if ( adWidth >= 336 )
google_ad_size = ["336", "280"]; /* Large Rectangle (336 x 280) */
else if ( adWidth >= 300 )
google_ad_size = ["300", "250"]; /* Medium Rectangle (300 x 250) */
else if ( adWidth >= 250 )
google_ad_size = ["250", "250"]; /* Square (250 x 250) */
else if ( adWidth >= 200 )
google_ad_size = ["200", "200"]; /* Small Square (200 x 200) */
else if ( adWidth >= 180 )
google_ad_size = ["180", "150"]; /* Small Rectangle (180 x 150) */
else
google_ad_size = ["125", "125"]; /* Button (125 x 125) */
document.write (
'<ins class="adsbygoogle" style="display:inline-block;width:'
+ google_ad_size[0] + 'px;height:'
+ google_ad_size[1] + 'px" data-ad-client="'
+ google_ad_client + '" data-ad-slot="'
+ google_ad_slot + '"></ins>'
);
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
转到AdSense信息中心,然后创建新的广告单元或使用现有的广告单元。记下广告单元的ID以及您的AdSense发布商ID,并将这些值粘贴到第15行和第18行。
接下来,将上述代码段复制粘贴到您网页的任意位置,并根据用户设备的尺寸,提供最合适的AdSense广告。如果您希望在同一网页上添加多个自适应AdSense广告单元,请使用相同的代码段,但在第1行和第1行中增加DIV ID。 #6使他们成为google-ads-1,google-ads-2等等。 我希望这会对你有所帮助。