在不同尺寸屏幕上显示不同大小的Google AdSense 广告
- - 搜索引擎周边随着移动网络和设备的蓬勃发展,互联网接入终端的屏幕尺寸大小也越来越多样化,这些终端设备包括PC、笔记本电脑、智能手机和平板电脑等. 同一个网页,在不同屏幕大小的设备上的浏览效果和用户体验可能千差万别. 对于 网站管理员而言,如何让自己的网站在不同设备上浏览时都具有良好的体验,是设计时需要解决的一个关键问题.
<script type="text/javascript">
google_ad_client = "ca-publisher-id";
if (window. innerWidth >= 800) {
google_ad_slot = "1234567890";
google_ad_width = 728;
google_ad_height = 90;
} else if (windows.innerWidth < 400) {
google_ad_slot = "2345678901";
google_ad_width = 300;
google_ad_height = 250;
} else {
google_ad_slot = "3456789012";
google_ad_width = 468;
google_ad_height = 60;
}
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>