有没有延迟加载Adsense Ads的工作方法?
我在堆栈溢出和谷歌中检查了一些答案,所有这些方法都只是延迟加载,只有当用户在视口中可见时我才需要加载广告;就像延迟加载图像一样。
是的,可以延迟加载Adsense,您需要使用像LazyHTML这样的开源库来延迟加载Adsense广告,而无需修改Adcode。
在以下示例中,将 ca-pub-xxx 替换为您的 Google Adsense 客户端 ID,您还必须替换槽 ID。根据您的需要进行更改。
将以下代码添加到Head中。
<script async src="https://cdn.jsdelivr.net/npm/[email protected]/dist/lazyhtml.min.js" crossorigin="anonymous"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-xxx" crossorigin="anonymous"></script>
将广告代码包装在 lazyhtml 包装器中。
<div class="lazyhtml" data-lazyhtml onvisible>
<script type="text/lazyhtml">
<!--
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-XXXXXX"
data-ad-slot="YYYY"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
-->
</script>
</div>
步骤与注意事项:
帮助链接:
Lazy HTML 包装器:LazyHTML 转换器
你可以加入 pubpower .net ,他们支持 adsense 的延迟加载 检查我的网站 Pinterest 下载器