替换分享工具自带图标

发布时间:2020-05-07

替换分享工具自带图标

目前常用的社会化分享工具有 百度分享  和 JiaThis,特别是这个JiaThis年代够久远,在百度也加入这个领域后,居然还坚持为大家提供免费工具,这里点32个赞!

随着时代的变化,这些分享工具自带的小图标却一成不变,已不符合目前流行的扁平化风格,与网站风格极不协调,但有些网站虽用的也上面两款分享工具,但图标却不一样,扁平、大方、简洁,显得高大上。今天就分享一下修改后的代码,起个抛砖引玉的作用,以JiaThis分享工具为例,下面是修改后的效果:

替换分享工具自带图标

默认的分享按钮

替换分享工具自带图标

美化后的分享按钮

基本原理就是找到默认分享代码的DIV选择器,然后隐藏背景图片,添加字体图标并重写样式。

一、首先将下面代码添加到当前主题functions.php的最后:

  1. function entry_share($content) {
  2. if (is_single()) {
  3.     $content .= ‘
  4.     <div class=“entry-share”>
  5.         <div class=“share-box”>
  6.             <span class=“share-pu”>分享到</span>
  7.             <!– JiaThis Button BEGIN –>
  8.             <div class=“jiathis_style_32x32”>
  9.                 <a class=“jiathis_button_tsina”><i class=“fa fa-weibo”></i></a>
  10.                 <a class=“jiathis_button_weixin”><i class=“fa fa-wechat”></i></a>
  11.                 <a class=“jiathis_button_renren”><i class=“fa fa-renren”></i></a>
  12.                 <a class=“jiathis_button_qzone”><i class=“fa fa-qq”></i></a>
  13.                 <a class=“jiathis_button_fb”><i class=“fa fa-facebook”></i></a>
  14.                 <a class=“jiathis_button_twitter”><i class=“fa fa-twitter”></i></a>
  15.                 <a href=“http://www.jiathis.com/share” class=“jiathis jiathis_txt jtico jtico_jiathis” target=“_blank”><span><i class=“fa fa-share-alt”></i></span></a>
  16.                 <a class=“jiathis_counter_style”></a>
  17.             </div>
  18.         </div>
  19.         <script type=“text/javascript” src=“http://v3.jiathis.com/code/jia.js” charset=“utf-8”></script>
  20.         <!– JiaThis Button END –>
  21.     </div>’;
  22. }
  23. return $content;
  24. }
  25. add_filter(‘the_content’,’entry_share’);

之后分享代码会自动添加到文章正文的下面。

上面代码只是在原JiaThis分享代码基础上添加了字体图标。

二、再把下面配套的样式添加到当前主题样式文件style.css中即可。

展示代码展开

  1. /** 外部盒子 **/
  2. .entry-share {
  3.     font-size14px;
  4.     text-aligncenter;
  5.     margin: 0 auto 20px;
  6. }
  7. /********* 分享文字 ********/
  8. .entry-share .share-pu {
  9.     font-weight: 700;
  10.     line-height40px;
  11. }
  12. .entry-share .share-pu {
  13.     floatleft;
  14.     color#4d4d4d;
  15. }
  16. /******** 分享样式 ********/
  17. .entry-share div.share-box {
  18.     displayinlineblock;
  19.     overflowhidden;
  20. }
  21. .entry-share .jiathis_style_32x32 {
  22.     floatleft !important;
  23.     margin-left10px;
  24. }
  25. .entry-share .jiathis_style_32x32 a {
  26.     floatleft;
  27.     width40px;
  28.     height40px;
  29.     color#a8a8a8;
  30.     font-size16px !important;
  31.     displayblock;
  32.     border-radius: 5px;
  33.     margin-right10px;
  34.     border1px solid #999;
  35. }
  36. .entry-share .jiathis_style_32x32 a:hover {
  37.     text-decorationnone;
  38.     color#fff;
  39. }
  40. /** 图标大小 **/
  41. .entry-share .jiathis_style_32x32 a span {
  42.     backgroundtransparent !important;
  43.     width38px !important;
  44.     height38px !important;
  45.     padding: 0 !important;
  46.     margin: 0 !important;
  47.     floatnone !important;
  48.     font-size20px !important;
  49.     displayblock !important;
  50.     text-aligncenter !important;
  51.     line-height38px !important;
  52. }
  53. /******** 更多分享 ********/
  54. .entry-share .jiathis_style_32x32 a.jtico_jiathis {
  55.     backgroundtransparent !important;
  56.     width38px !important;
  57.     height38px !important;
  58.     padding: 0 !important;
  59.     margin: 0 !important;
  60.     font-size24px !important;
  61.     displayblock !important;
  62.     text-aligncenter !important;
  63.     line-height38px !important;
  64. }
  65. .entry-share .jiathis_style_32x32 a:hover.jtico_jiathis {
  66.     background#666 !important;
  67.     border-color#666;
  68. }
  69. /******** 分享次数 ********/
  70. .entry-share .jiathis_style_32x32 a.jiathis_counter_style {
  71.     widthauto;
  72.     margin-left10px;
  73.     padding: 0 15px;
  74.     border-radius: 5px;
  75.     displayinlineblock;
  76.     positionrelative;
  77.     background#e8e8e8;
  78.     border-color#e8e8e8;
  79.     color#fff !important;
  80. }
  81. /** 箭头 **/
  82. .entry-share .jiathis_style_32x32 a.jiathis_counter_style:before {
  83.     content;
  84.     width: 0;
  85.     height: 0;
  86.     border-stylesolid;
  87.     border-width10px 10px 10px 0;
  88.     border-colortransparent #e8e8e8 transparent transparent;
  89.     positionabsolute;
  90.     right: 100%;
  91.     top: 50%;
  92.     margin-top: –10px;
  93. }
  94. .entry-share .jiathis_style_32x32 a.jiathis_counter_style span.jiathis_bubble_style {
  95.     color#666 !important;
  96.     font-size14px !important;
  97.     widthauto !important;
  98. }
  99. /******** 不同图标悬停背景颜色 ********/
  100. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_tsina {
  101.     background#e74c3c;
  102.     border-color#e74c3c;
  103. }
  104. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_weixin {
  105.     background#2ecc71;
  106.     border-color#2ecc71;
  107. }
  108. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_fb {
  109.     background#4760A5;
  110.     border-color#4760A5;
  111. }
  112. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_twitter {
  113.     background#50ABF1;
  114.     border-color#50ABF1;
  115. }
  116. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_renren {
  117.     background#3777BE;
  118.     border-color#3777BE;
  119. }
  120. .entry-share .jiathis_style_32x32 a:hover.jiathis_button_qzone {
  121.     background#2174C3;
  122.     border-color#2174C3;
  123. }
大熊wordpress凭借多年的wordpress企业主题制作经验,坚持以“为用户而生的wordpress主题”为宗旨,累计为2000多家客户提供品质wordpress建站服务,得到了客户的一致好评。我们一直用心对待每一个客户,我们坚信:“善待客户,将会成为终身客户”。大熊wordpress能坚持多年,是因为我们一直诚信。我们明码标价(wordpress做网站需要多少钱),从不忽悠任何客户,我们的报价宗旨:“拒绝暴利,只保留合理的利润”。如果您有网站建设、网站改版、网站维护等方面的需求,请立即咨询右侧在线客服或拨打咨询热线:18324743309,我们会详细为你一一解答你心中的疑难。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

相关文章

写给所有做网站的朋友的一封信

写给所有做网站的朋友的一封信

现在就开始执行“1+N”互联网推广和没有开始执行的人,一两天看不出任何区别; 一两个月看来差异也是微乎其微的;但在2-5年的长远时间来看的时候,你的高质量询盘不断增加,你的互联网资产已经建立完成,对手已经很难匹敌,现在你看到这段文字的时候就是最好的开始,现在就是最好的时候,马上开始“1+N”体系的整体互联网推广吧,我们和你一起,开创互联网大未来!

点击查看详情

准备开启WordPress网站建设推广?

我们相信高端漂亮的网站不应该是昂贵的,这就是wordpress对每个人都是免费的原因
wordpress建站免费入门,并提供价格合理的wordpress建站套餐。