Google AdUnit 隐藏

发布于 2024-11-17 01:18:58 字数 101 浏览 2 评论 0原文

有人知道如何操作 google 的 AdUnit 元素吗? 比如隐藏等等?

到目前为止,我可以更改不透明度并垂直移动它,但只能在广告加载之前进行。

Has anyone figured how to manipulate the AdUnit element from google?
E.g. hiding, etc.?

So far I can change opacity and move it vertically, but only before the ads load.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮光之海 2024-11-24 01:18:58

AdUnit 上调用 setPosition(null) 会将其从地图中删除。请参阅 http://code.google.com/apis/maps/文档/javascript/reference.html#AdUnit

Calling setPosition(null) on the AdUnit will remove it from the map. See http://code.google.com/apis/maps/documentation/javascript/reference.html#AdUnit

悲凉≈ 2024-11-24 01:18:58

所以我自己找到了解决方案:

var t=setTimeout("closeAdd()",2000);});

function closeAdd(){
 $('#add').append('<span id="close_but">Close</span>');
 $('#close_but').css('position','absolute');
 $('#close_but').css('color','blue');
 $('#close_but').css('top','0px');
 $('#close_but').css('left','425px');
 $('#close_but').click(function(){
  $('#add').hide();});
 }

使用 jQuery,我将“关闭”跨度添加到包含添加的节点。实际放置取决于添加单元的格式,这里我有“AdFormat.BANNER”。无论如何,我还将单击处理程序附加到隐藏添加包含元素的关闭范围。

顺便提一句。延迟操作是必要的,因为谷歌对节点进行奇怪的操作,直到添加完全加载。

So I found solution myself:

var t=setTimeout("closeAdd()",2000);});

function closeAdd(){
 $('#add').append('<span id="close_but">Close</span>');
 $('#close_but').css('position','absolute');
 $('#close_but').css('color','blue');
 $('#close_but').css('top','0px');
 $('#close_but').css('left','425px');
 $('#close_but').click(function(){
  $('#add').hide();});
 }

Using jQuery I am adding the 'Close' span to the node containing the add. The actual placing depends on the format of the add unit, here I have "AdFormat.BANNER". Anyway, I also attach the click handler to the Close span which hides the add containing element.

BTW. delaying the manipulation is necessarry as google does strange manipulations with a node and untill the adds load completely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文