2

如何在我的网站中使用我自己定制的 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>

我只是想改变基本的绿色图标而已。

4

2 回答 2

7

这已在 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;
}
于 2012-02-09T08:54:15.787 回答
3

更改此类的属性:-

<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;
}

您也可以直接从 Share This JS 文件中编辑 img PNG:-

搜索:-

style.backgroundImage

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

于 2012-02-09T08:56:43.223 回答