如何获得谷歌加上像Twitter一样的弹出窗口?

时间:2012-05-10 10:57:57

标签: google-plus google-plus-one

Google+图标会自动在HOVER上共享页面,并且不需要像其他人一样点击。有没有什么可以做到这一点,要求点击像其他人[fb,推特],并加载弹出窗口,如Twitter共享图标?

1 个答案:

答案 0 :(得分:8)

JavaScript window.open方法将打开一个新窗口。您可以将此技术与share link结合使用,以实现您的目标。这是从official docs中提取的这种技术的一个例子。只需将目标网址替换为http://example.com

<a href="https://plus.google.com/share?url=http://example.com"
  onclick="javascript:window.open('http://example.com','',
  'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');
  return false;">
  <img src="https://www.gstatic.com/images/icons/gplus-64.png" 
    alt="Share on Google+"/>
</a>