自定义社交分享未在 windows 内开放?
Custom social share not opening in windows?
我创建了一个基于 this tutorial 的自定义社交分享模块,我想了解为什么我的模块会在全屏新标签页中打开,但教程会打开新 windows 特定尺码。
我希望我的打开方式与本教程相同,但我不确定。我知道有一种方法可以用 JS
来实现,我在其中定义 window 的大小,但这对我来说似乎不是最优雅的解决方案。
感谢帮助!
这是link的基本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.
只需在 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>
参见fiddle:https://jsfiddle.net/1a8mpL75/1/
我创建了一个基于 this tutorial 的自定义社交分享模块,我想了解为什么我的模块会在全屏新标签页中打开,但教程会打开新 windows 特定尺码。
我希望我的打开方式与本教程相同,但我不确定。我知道有一种方法可以用 JS
来实现,我在其中定义 window 的大小,但这对我来说似乎不是最优雅的解决方案。
感谢帮助!
这是link的基本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.
只需在 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>
参见fiddle:https://jsfiddle.net/1a8mpL75/1/