WordPress站点添加哔哩哔哩充电样式 – B2美化

2021-08-12 0 1,275 百度已收录
简单的移植了下,将哔哩哔哩的充电移植到B2主题的赞赏中。
WordPress站点添加哔哩哔哩充电样式 – B2美化

WordPress站点添加哔哩哔哩充电样式 – B2美化

效果

WordPress站点添加哔哩哔哩充电样式 – B2美化
响应式
  • 1.1(修复了移动端显示错误)
  • 代码版本:1.0(发布)

第一步,添加HTML

找到主题根目录下的/Modules/Templates/Single.php文件,将第567行内容

  1. <div class="content-ds-button"><button @click="show()">'.__('赞赏','b2').'</button></div>

替换为以下代码:

  1. <div class="content-ds-button" @click="show()">
  2. <div id="con">
  3. <div id="TA-con">
  4. <div id="text-con">
  5. <div id="linght"></div>
  6. <div id="TA">为TA充电</div>
  7. </div>
  8. </div>
  9. <div id="tube-con">
  10. <svg viewBox="0 0 1028 385" fill="none" xmlns="http://www.w3.org/2000/svg">
  11. <path d="M1 77H234.226L307.006 24H790" stroke="#e5e9ef" stroke-width="20" />
  12. <path d="M0 140H233.035L329.72 71H1028" stroke="#e5e9ef" stroke-width="20" />
  13. <path d="M1 255H234.226L307.006 307H790" stroke="#e5e9ef" stroke-width="20" />
  14. <path d="M0 305H233.035L329.72 375H1028" stroke="#e5e9ef" stroke-width="20" />
  15. <rect y="186" width="236" height="24" fill="#e5e9ef" />
  16. <ellipse cx="790" cy="25.5" rx="25" ry="25.5" fill="#e5e9ef" />
  17. <circle r="14" transform="matrix(1 0 0 -1 790 25)" fill="white" />
  18. <ellipse cx="790" cy="307.5" rx="25" ry="25.5" fill="#e5e9ef" />
  19. <circle r="14" transform="matrix(1 0 0 -1 790 308)" fill="white" />
  20. </svg>
  21. <div id="mask">
  22. <svg viewBox="0 0 1028 385" fill="none" xmlns="http://www.w3.org/2000/svg">
  23. <path d="M1 77H234.226L307.006 24H790" stroke="#f25d8e" stroke-width="20" />
  24. <path d="M0 140H233.035L329.72 71H1028" stroke="#f25d8e" stroke-width="20" />
  25. <path d="M1 255H234.226L307.006 307H790" stroke="#f25d8e" stroke-width="20" />
  26. <path d="M0 305H233.035L329.72 375H1028" stroke="#f25d8e" stroke-width="20" />
  27. <rect y="186" width="236" height="24" fill="#f25d8e" />
  28. <ellipse cx="790" cy="25.5" rx="25" ry="25.5" fill="#f25d8e" />
  29. <circle r="14" transform="matrix(1 0 0 -1 790 25)" fill="white" />
  30. <ellipse cx="790" cy="307.5" rx="25" ry="25.5" fill="#f25d8e" />
  31. <circle r="14" transform="matrix(1 0 0 -1 790 308)" fill="white" />
  32. </svg>
  33. </div>
  34. <div id="orange-mask" >
  35. <svg viewBox="0 0 1028 385" fill="none" xmlns="http://www.w3.org/2000/svg">
  36. <path d="M1 77H234.226L307.006 24H790" stroke="#ffd52b" stroke-width="20" />
  37. <path d="M0 140H233.035L329.72 71H1028" stroke="#ffd52b" stroke-width="20" />
  38. <path d="M1 255H234.226L307.006 307H790" stroke="#ffd52b" stroke-width="20" />
  39. <path d="M0 305H233.035L329.72 375H1028" stroke="#ffd52b" stroke-width="20" />
  40. <rect y="186" width="236" height="24" fill="#ffd52b" />
  41. <ellipse cx="790" cy="25.5" rx="25" ry="25.5" fill="#ffd52b" />
  42. <circle r="14" transform="matrix(1 0 0 -1 790 25)" fill="white" />
  43. <ellipse cx="790" cy="307.5" rx="25" ry="25.5" fill="#ffd52b" />
  44. <circle r="14" transform="matrix(1 0 0 -1 790 308)" fill="white" />
  45. </svg>
  46. </div>
  47. <!--<p id="people">共 <b>361</b> 人</p>-->
  48. <span id="people" v-if="data.count"><b v-text="data.count"></b>人'.__('','b2').'</span>
  49. </div>
  50. </div>
  51. </div>

第二步:添加CSS样式

在主题根目录下的style.css文件底部添加以下CSS代码

  1. /*赞赏
  2. 版本:1.1
  3. */
  4. /* 设置白色容器 */
  5. #con {
  6. width: 350px;
  7. height: 85px;
  8. position: relative;
  9. border-radius: 4px;
  10. /*margin:50px auto;*/
  11. }
  12. /* 设置文本内容容器 */
  13. #TA-con {
  14. width: 157px;
  15. height: 50px;
  16. background-color: #f25d8e;
  17. box-shadow: 0 4px 4px rgba(255, 112, 159, .3);
  18. position: absolute;
  19. top: 50%;
  20. left: 5%;
  21. transform: translateY(-50%);
  22. border-radius: 4px;
  23. cursor: pointer;
  24. }
  25. /* 设置文本居中容器 */
  26. #text-con {
  27. width: 100px;
  28. height: 100%;
  29. margin: 0 auto;
  30. position: relative;
  31. }
  32. /* 做一个小闪电 */
  33. #linght {
  34. width: 0;
  35. height: 0;
  36. position: absolute;
  37. top: 36%;
  38. left: 4px;
  39. border-color: transparent;
  40. border-style: solid;
  41. border-width: 10px;
  42. border-top: 10px solid #fff;
  43. border-radius: 4px;
  44. transform: rotate(-55deg);
  45. }
  46. #linght::after {
  47. position: absolute;
  48. top: -13px;
  49. left: -11px;
  50. content: "";
  51. width: 0;
  52. height: 0;
  53. border-color: transparent;
  54. border-style: solid;
  55. border-width: 10px;
  56. border-top: 10px solid #fff;
  57. transform: rotate(180deg);
  58. border-radius: 4px;
  59. }
  60. /* 文字 */
  61. #TA {
  62. float: right;
  63. line-height: 50px;
  64. font-size: 15px;
  65. color: #fff;
  66. }
  67. #TA-con:hover {
  68. background-color: #ff6b9a;
  69. }
  70. /* 创建图形容器 */
  71. #tube-con {
  72. width: 157px;
  73. height: 55px;
  74. position: absolute;
  75. right: -5px;
  76. top: 15px;
  77. }
  78. /* 对svg图形设置宽高 */
  79. .content-ds-button svg {
  80. width: 100%;
  81. height: 100%;
  82. }
  83. /* 创建一个蒙版 宽度为0,当我hover充电框的时候,宽度展开 */
  84. #mask {
  85. width: 0px;
  86. height: 100%;
  87. overflow: hidden;
  88. position: absolute;
  89. top: 0;
  90. left: 0;
  91. transition:all 0.5s;
  92. }
  93. /* 对蒙版的sbg单独设置宽高,保证宽度高低有一个固定值而不是百分比 */
  94. #mask svg {
  95. width: 157px;
  96. height: 55px;
  97. }
  98. /* 对充电框hover的时候开始动画,将粉色线条铺开 */
  99. #TA-con:hover+#tube-con>#mask{
  100. width:157px;
  101. }
  102. /* 对充电框hover的时候开始动画,添加黄色快速移动的动画 */
  103. #TA-con:hover+#tube-con>#orange-mask{
  104. animation: move1 0.5s linear 0.2s infinite;
  105. }
  106. #TA-con:hover+#tube-con>#orange-mask svg{
  107. animation: movetwo 0.5s linear 0.2s infinite;
  108. }
  109. /* 创建黄色移动的蒙版 */
  110. #orange-mask{
  111. width: 18px;
  112. height: 100%;
  113. overflow: hidden;
  114. position:absolute;
  115. left:-15px;
  116. top:0px;
  117. }
  118. /* 创建黄色移动的内容 */
  119. #orange-mask svg {
  120. position: absolute;;
  121. top:0;
  122. left:15px;
  123. width: 157px;
  124. height: 55px;
  125. }
  126. @keyframes move1 {
  127. 0%{
  128. left:-15px;
  129. }
  130. 100%{
  131. left:140px;
  132. }
  133. }
  134. @keyframes movetwo {
  135. 0%{
  136. left:15px;
  137. }
  138. 100%{
  139. left:-140px;
  140. }
  141. }
  142. #people{
  143. position:absolute;
  144. right:10px;
  145. top:18px;
  146. font-size:12px;
  147. font-family:"雅黑";
  148. color:#aaa;
  149. }
  150. #people>b{
  151. color:#777;
  152. }
  153. @media screen and (max-width: 768px) {
  154. .content-ds-button { top: 0px;
  155. margin-top: 2em;}
  156. #con {
  157. width: 10em;
  158. height: auto;
  159. margin: 0px;
  160. background: #fffcf7;
  161. }
  162. #TA-con {
  163. width: 107px;
  164. height: 40px;
  165. left: 42%;
  166. }
  167. #linght {top: 26%;}
  168. #TA {line-height: 40px;margin-right: 0.4em;}
  169. #tube-con {display: none;}
  170. }

补充

替换默认的糖果图标,将下列代码的图片链接替换为自己的链接。

  1. /*更改图标*/
  2. .b2-tang:before {
  3. content: "";
  4. background: url(https://www.xxx.xxx/wp-content/themes/b2child-mqzj/images/dianchifang.svg) no-repeat;
  5. background-size: 19px 24px;
  6. width: 19px;
  7. height: 24px;
  8. position: absolute;
  9. margin: -26px 0px 0px -18px;
  10. }
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

免责声明   ⚠️ 1. 本站所有资源来源于网络收集,若资源侵犯了您的合法权益, 请来信通知我们(Email: 1427707223@qq.com),我们会及时删除,给您带来的不便,我们深表歉意! 2. 分享目的仅供大家学习和交流,若使用商业用途,请购买正版授权! 否则产生的一切后果将由下载用户自行承担! 3. 会员不得使用于非法商业用途,不得违反国家法律。否则后果自负! 4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解! 5. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需! 6. 因源码具有可复制性,一经购买 ,不得以任何形式退款。 7.更多详情请点击查看

优站网 WordPress WordPress站点添加哔哩哔哩充电样式 – B2美化 https://www.zhanceo.com/14919.html

诚乃立身之本、信为道德之基

常见问题
  • 如果付款后没有弹出下载页面,多刷新几下,有问题联系客服!
查看详情
  • 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
查看详情

相关文章

联系官方客服

为您解决烦忧 - 24小时在线 专业服务

WordPress站点添加哔哩哔哩充电样式 – B2美化-海报