如何在我的网站中使用我自己定制的 Sharethis 图像以及 sharethis 插件?

发布于 2025-01-04 09:03:28 字数 421 浏览 0 评论 0原文

如何在我的网站中使用我自己定制的 Sharethis 图像以及 sharethis 插件?

我可以手动执行以下操作:-

<script type="text/javascript">var switchTo5x=true;</script><script type="text/javascript" src="http://localhost/website/js/share-this.js"></script>
<script type="text/javascript">stLight.options({publisher:'fbcd68c9-0a9c-4974-9ada-e106a30e9194'});</script>

我只想更改基本的绿色图标,仅此而已。

How can i use my own customized Sharethis image along with sharethis plugin in my website?

Is anything i can manually do in:-

<script type="text/javascript">var switchTo5x=true;</script><script type="text/javascript" src="http://localhost/website/js/share-this.js"></script>
<script type="text/javascript">stLight.options({publisher:'fbcd68c9-0a9c-4974-9ada-e106a30e9194'});</script>

I just want to change the basic green color Icon nothing else.

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

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

发布评论

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

评论(2

碍人泪离人颜 2025-01-11 09:03:28

这已记录在 ShareThis 网站上。在链接上使用“st_sharethis_custom”类。

<span class="st_sharethis_custom">ShareThis</span>

然后指定一个与 CSS 一起使用的新图标。

.st_sharethis_custom{
    background: url("http://path/to/image/file") no-repeat scroll left top transparent;
    padding:0px 16px 0 0;
}

This is already documented on the ShareThis site. Use the 'st_sharethis_custom' class on your link.

<span class="st_sharethis_custom">ShareThis</span>

Then specify a new icon to use with CSS.

.st_sharethis_custom{
    background: url("http://path/to/image/file") no-repeat scroll left top transparent;
    padding:0px 16px 0 0;
}
姐不稀罕 2025-01-11 09:03:28

更改此类的属性:-

<span class="st_sharethis_custom">ShareThis</span>

更改 CSS,如下所示:-

.st_sharethis_custom{
    background: url("http://path/to/image/file") no-repeat scroll left top transparent;
    padding:0px 16px 0 0;
}

您还可以直接从共享此 JS 文件编辑 img PNG:-

搜索:-

style.backgroundImage

将图像位置替换为您的自定义位置。

change the properties of this class:-

<span class="st_sharethis_custom">ShareThis</span>

Change CSS like this:-

.st_sharethis_custom{
    background: url("http://path/to/image/file") no-repeat scroll left top transparent;
    padding:0px 16px 0 0;
}

Also you can edit the img PNG directly from the Share This JS file:-

Search for:-

style.backgroundImage

replace the image location to your custom location.

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