微信和支付宝二维码设置
先生成微信和支付宝二维码,将图片放在themes/next/source/images
下
配置_config.yml
找到如下语句并修改1
2
3
4# Reward
reward_comment: 您的支持将鼓励我继续创作!
wechatpay: /images/wechatpay.png
alipay: /images/alipay.png
删除打赏文字闪动样式
进入themes\next\source\css\_common\components\post\post-reward.styl
,找到以下样式并删除1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#wechat:hover p{
animation: roll 1s infinite linear;
-webkit-animation: roll 1s infinite linear;
-moz-animation: roll 1s infinite linear;
}
#alipay:hover p{
animation: roll 1s infinite linear;
-webkit-animation: roll 1s infinite linear;
-moz-animation: roll 1s infinite linear;
}
#bitcoin:hover p {
animation: roll 1s infinite linear;
-webkit-animation: roll 1s infinite linear;
-moz-animation: roll 1s infinite linear;
}