自定义社交分享不在Windows中打开?

时间:2016-04-20 17:49:08

标签: javascript html css share

我创建了一个基于 this tutorial 的自定义社交分享模块,我正在尝试理解为什么我的全屏会在新标签页中打开,但教程会打开在某些尺寸的新窗户中。

我希望我的开放方式与本教程相同,但我不确定。我知道有一种方法可以用JS来定义窗口的大小,但这对我来说似乎不是最优雅的解决方案。

感谢帮助!

以下是链接的基本HTML:

<a class="fa fa-twitter share-base share-twitter" onclick="window.open('https://twitter.com/intent/tweet?text=the text')"></a>

这是我的 module's prototype

1 个答案:

答案 0 :(得分:2)

只需在window.open内添加大小,如下所示:

<a class="fa fa-twitter share-base share-twitter" onclick="window.open('https://twitter.com/intent/tweet?text=the text','','width=200,height=100')">test</a>

请参阅小提琴:https://jsfiddle.net/1a8mpL75/1/