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

2 javascript jquery social-networking sharethis

如何在我的网站中使用我自己定制的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>
Run Code Online (Sandbox Code Playgroud)

我只是想改变基本的绿色图标别的什么.

小智 7

这已在ShareThis网站上记录.在链接上使用"st_sharethis_custom"类.

<span class="st_sharethis_custom">ShareThis</span>
Run Code Online (Sandbox Code Playgroud)

然后指定一个用于CSS的新图标.

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