让 google +1 按钮像父 div 一样隐藏

发布于 2024-12-09 06:44:07 字数 489 浏览 0 评论 0原文

我有一个模态框 div,其可见性:隐藏; 5 秒后,由于 JavaScript 函数的作用,它就显示出来了。在该 div 内,我有 google plus 一个按钮的代码,但问题是在弹出模式框之前,该按钮已经可见。我希望它与模式框同时出现(页面加载后 5 秒,而不是立即)。有什么办法可以做到这一点吗?

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone size="tall" callback="g_click_function"></g:plusone>
<script>
    function g_click_function(){
        document.getElementById('greet_block_close').click();
    }
</script>

I have a modal box div, that has visibility: hidden; and after 5s it shows up thanks to a javascript function. Inside that div, I have code for google plus one button, but the thing is that before the modal box pops up, the button is already visible. I want it to appear at the same time as the modal box (5s after the page loads, not instantly). Is there any way to do that?

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<g:plusone size="tall" callback="g_click_function"></g:plusone>
<script>
    function g_click_function(){
        document.getElementById('greet_block_close').click();
    }
</script>

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

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

发布评论

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

评论(1

鼻尖触碰 2024-12-16 06:44:07

首先,向

<script id="mygone" type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

然后,如果您使用 jQuery(或正文的 onload),则在页面加载:

$('document').ready(function()
{
   $('#mygone').next().hide();
});

最后,当您准备好显示它时,运行此代码:

$('#mygone').next().show();

我还在 JSFiddle 中为您创建了一个示例: http://jsfiddle.net/EDTdY/2/

First, add an id to the <script> tag, such as mygone:

<script id="mygone" type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>

Then, if you're using jQuery (or onload for the body) hide it when the page loads:

$('document').ready(function()
{
   $('#mygone').next().hide();
});

Finally, when you're ready to show it, run this code:

$('#mygone').next().show();

I also created an example in JSFiddle for you here: http://jsfiddle.net/EDTdY/2/.

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