Artitalk说说心情发布页面(个性定制)

news/2024/12/21 4:01:28/

一、前言

嗯,一款在线发布说说的hexo插件,目前有不少小伙伴在使用啦,欣慰。

回馈新老用户,这里给出一些DIY魔改的教程,让你拥有独一无二的说说页面。

前提是你已经配置好了 说说页面,可以正常发布说说,可以参考官网教程https://artitalk.js.org/

本次魔改,先挑选,再CV复制粘贴,最后hexo clean &&hexo g&&hexo d三连发布一下就ok了哦!
在这里插入图片描述

二、选妃

1.默认

懒人做法,不懂不动不改,默认很好看!
在这里插入图片描述
在这里插入图片描述

2.简约派

黑白永恒经典(黑底白字)
在这里插入图片描述
源码:
(这个颜色可以做黑暗主题适配,可以加个白色的边框,我这里未加)

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: #333030;color: #e3dede}.cbp_tmtimeline>li .cbp_tmlabel {background: #333030;color: #e3dede}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #333030}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #333030}.button {background: #333030;color: #e3dede}</style><!-- 自定义样式.end -->

简约派(白底黑字):
在这里插入图片描述
源码:

<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {color: #333030;background: #e3dede}.cbp_tmtimeline>li .cbp_tmlabel {color: #333030;background: #e3dede}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #e3dede}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #e3dede}.button {color: #333030;background: #e3dede}</style><!-- 自定义样式.end -->

3.图片至上

二次元,idol,自然景色,对,我们就要纯纯的图片背景。

3.1 自定义壁纸

在这里插入图片描述
源码:(url中填写地址即可)

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: url("https://gitee.com/cungudafa/source/raw/master/img/bg/hyo/hyo01.jpg") 0% 0% / cover;}.cbp_tmtimeline>li .cbp_tmlabel {background: url("https://gitee.com/cungudafa/source/raw/master/img/bg/hyo/hyo01.jpg") 0% 0% / cover;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #6dd0f2}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #f59abe}.button {background: url("https://gitee.com/cungudafa/source/raw/master/img/bg/hyo/hyo01.jpg") 0% 0% / cover;}</style><!-- 自定义样式.end -->

border-right-color是左边那个三角形的颜色,由于图片颜色不固定,最好是根据图片颜色来搭配。

3.2 bing壁纸

(每次都会切换)
在这里插入图片描述

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: url("https://bing.rthe.net/wallpaper") 0% 0% / cover;}.cbp_tmtimeline>li .cbp_tmlabel {background: url("https://bing.rthe.net/wallpaper") 0% 0% / cover;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #6dd0f2}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #f59abe}.button {background: url("https://bing.rthe.net/wallpaper") 0% 0% / cover;}</style><!-- 自定义样式.end -->

3.3 洛丽塔

在这里插入图片描述

<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: url("https://api.abcyun.co/api/others/randacgimage/token/5d8f31cf6a8ab") 0% 0% / cover;color: black;}.cbp_tmtimeline>li .cbp_tmlabel {background: url("https://api.abcyun.co/api/others/randacgimage/token/5d8f31cf6a8ab") 0% 0% / cover;color: black;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #6dd0f2}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #f59abe}.button {background: url("https://api.abcyun.co/api/others/randacgimage/token/5d8f31cf6a8ab") 0% 0% / cover;color: black;}</style><!-- 自定义样式.end -->

二次元另一个接口:

background: url("https://api.abcyun.co/api/others/randacgblogbg/token/5d8f31cf6a8ab") 0% 0% / cover;

4.渐变

4.1 双色

粉蓝渐变
在这里插入图片描述
在这里插入图片描述

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(45deg, rgb(109, 208, 242) 15%, rgb(245, 154, 190) 85%);color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  rgb(109, 208, 242)}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(45deg, rgb(109, 208, 242) 15%, rgb(245, 154, 190) 85%);color: white;}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  rgb(109, 208, 242)}.button {background: linear-gradient(45deg, rgb(109, 208, 242) 15%, rgb(245, 154, 190) 85%);color: white;}</style><!-- 自定义样式.end -->

4.2 多色

background: linear-gradient(102.7deg,#fddaff 8.2%,#dfadfc 19.6%,#adcdfc 36.8%,#adfcf4 73.2%,#caf8d0 90.9%);
}

在这里插入图片描述

				<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(102.7deg,#fddaff 8.2%,#dfadfc 19.6%,#adcdfc 36.8%,#adfcf4 73.2%,#caf8d0 90.9%);color: white;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(102.7deg,#fddaff 8.2%,#dfadfc 19.6%,#adcdfc 36.8%,#adfcf4 73.2%,#caf8d0 90.9%);color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #fddaff}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #fddaff}.button {background: linear-gradient(102.7deg,#fddaff 8.2%,#dfadfc 19.6%,#adcdfc 36.8%,#adfcf4 73.2%,#caf8d0 90.9%);color: white;}</style><!-- 自定义样式.end -->

多色2:
在这里插入图片描述
源码:
#BCA7A7 是颜色,50.8%是从左到右的所占的颜色宽度比例)

				<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(102.7deg,#B2998E 15.2%,#DCC6C6 30.6%,#BCA7A7 50.8%,#E1E0E7 73.2%,#e2b9b3 90.9%);color: black;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(102.7deg,#B2998E 15.2%,#DCC6C6 30.6%,#BCA7A7 50.8%,#E1E0E7 73.2%,#e2b9b3 90.9%);color: black;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #B2998E}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #B2998E}.button {background: linear-gradient(102.7deg,#B2998E 15.2%,#DCC6C6 30.6%,#BCA7A7 50.8%,#E1E0E7 73.2%,#e2b9b3 90.9%);color: black;}</style><!-- 自定义样式.end -->

多色太难调了,失败!!!如下,跳过
在这里插入图片描述

5. 动态渐变

以下取名的全是cungudafa乱编的,写到这里随便命个名吧。

5.1 果冻色

效果:(会动画变的)
在这里插入图片描述

配色:(太好看了,被自己美到!!!)
在这里插入图片描述
源码:(animation: 15s ease 0s infinite normal none running gradientBG;
15s是动画速度、gradientBG是动画效果(50%是颜色占比宽度)

             <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(-45deg, #f1ac9d, #f06966, #dee2d1, #6abe83) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(-45deg, #f1ac9d, #f06966, #dee2d1, #6abe83) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #f1ac9d}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #dee2d1}.button {background: linear-gradient(-45deg, #f1ac9d, #f06966, #dee2d1, #6abe83) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}@keyframes gradientBG {0% {background-position: 0% 50%;}50% {background-position: 100% 50%;}100% {background-position: 0% 50%;}}</style><!-- 自定义样式.end -->

5.2 巴啦啦小魔仙色

下面是配好了的颜色,挑选粘贴就好,私人订制,带走,不重样!!
评论告诉我哪一个最好看,你pick了谁。

在这里插入图片描述
在这里插入图片描述

			<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(-45deg, #7F95D1, #FF82A9, #FFC0BE, #FFEBE7) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(-45deg, #7F95D1, #FF82A9, #FFC0BE, #FFEBE7) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #FFC0BE}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #FFEBE7}.button {background: linear-gradient(-45deg, #7F95D1, #FF82A9, #FFC0BE, #FFEBE7) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}@keyframes gradientBG {0% {background-position: 0% 50%;}50% {background-position: 100% 50%;}100% {background-position: 0% 50%;}}</style><!-- 自定义样式.end -->

5.3 暖男色

效果:
在这里插入图片描述
在这里插入图片描述
配色:
在这里插入图片描述
源码:

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(-45deg, #3A405A, #AEC5EB, #F9DEC9, #E9AFA3) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: #3E4348;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(-45deg, #3A405A, #AEC5EB, #F9DEC9, #E9AFA3) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: #3E4348;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #AEC5EB}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #F9DEC9}.button {background: linear-gradient(-45deg, #3A405A, #AEC5EB, #F9DEC9, #E9AFA3) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: #3E4348;}@keyframes gradientBG {0% {background-position: 0% 50%;}50% {background-position: 100% 50%;}100% {background-position: 0% 50%;}}</style><!-- 自定义样式.end -->

5.4 程序员色

效果:
在这里插入图片描述
配色:
在这里插入图片描述
源码:

              <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(-45deg, #DADCDB, #403E4E, #93A6B1, #9A9FB6) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(-45deg, #DADCDB, #403E4E, #93A6B1, #9A9FB6) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #9A9FB6}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #DADCDB}.button {background: linear-gradient(-45deg, #DADCDB, #403E4E, #93A6B1, #9A9FB6) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}@keyframes gradientBG {0% {background-position: 0% 50%;}50% {background-position: 100% 50%;}100% {background-position: 0% 50%;}}</style><!-- 自定义样式.end -->

5.5 雪糕色

在这里插入图片描述
源码:

 <!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(-45deg, #FFD972, #EFA7A7, #FCBCB8, #A7E8BD) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(-45deg, #FFD972, #EFA7A7, #FCBCB8, #A7E8BD) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  #FCBCB8}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  #A7E8BD}.button {background: linear-gradient(-45deg, #FFD972, #EFA7A7, #FCBCB8, #A7E8BD) 0% 0% / 400% 400%;animation: 15s ease 0s infinite normal none running gradientBG;color: white;}@keyframes gradientBG {0% {background-position: 0% 50%;}50% {background-position: 100% 50%;}100% {background-position: 0% 50%;}}</style><!-- 自定义样式.end -->

6. 渐变+图片

唯美画风,看这里
在这里插入图片描述
在这里插入图片描述

			<!-- 自定义样式 --><style>.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {background: linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)) 0% 0% / cover, url("https://ae01.alicdn.com/kf/H18a4b998752a4ae68b8e85d432a5aef0l.png"), url("https://ae01.alicdn.com/kf/H21b5f6b8496141a1979a33666e1074d9x.jpg") 0px 0px;color: white;}.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {border-right-color:  rgba(255, 165, 150, 0.5);}.cbp_tmtimeline>li .cbp_tmlabel {background: linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)) 0% 0% / cover, url("https://ae01.alicdn.com/kf/H18a4b998752a4ae68b8e85d432a5aef0l.png"), url("https://ae01.alicdn.com/kf/H21b5f6b8496141a1979a33666e1074d9x.jpg") 0px 0px;color: white;}.cbp_tmtimeline>li .cbp_tmlabel:after {border-right-color:  rgba(0, 228, 255, 0.35);}.button {background: linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)) 0% 0% / cover, url("https://ae01.alicdn.com/kf/H18a4b998752a4ae68b8e85d432a5aef0l.png"), url("https://ae01.alicdn.com/kf/H21b5f6b8496141a1979a33666e1074d9x.jpg") 0px 0px;color: white;}</style><!-- 自定义样式.end -->

这里图片和颜色都可以修改,具体看总结。

三、总结

可以直接用配置好的颜色和背景图片,当然你也可以更换。

  • 更换背景图片
    url里的就是图片路径,可以是网图(jsd等),也可以填相对路径,不会就百度或者用默认的。

    url("https://ae01.alicdn.com/kf/H18a4b998752a4ae68b8e85d432a5aef0l.png")
    
  • 更换配色
    #FFD972,rgba(0, 228, 255, 0.35)这个就是颜色,可以更改

    background: linear-gradient(-45deg, #FFD972, #EFA7A7, #FCBCB8, #A7E8BD) 0% 0% / 400% 400%;background: linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35)) 0% 0% / cover, url("https://ae01.alicdn.com/kf/H18a4b998752a4ae68b8e85d432a5aef0l.png"), url("https://ae01.alicdn.com/kf/H21b5f6b8496141a1979a33666e1074d9x.jpg") 0px 0px;
    
  • 更换字体颜色(默认是白色,如果影响观感,可以修改一下,原则是:深色背景改浅色字,浅色背景用深色字。)

    color: white;
    color: #ff1234;
    color: rgba(0, 228, 255);
    

如果这些还不够,请大佬自行调整以下:(F12就能找到)

-参数
内边距(px固定,rem相对)padding
字体大小font-size
边框的圆滑度(默认是12px,数值越大越圆)border-radius
透明度(0~1)opacity

链接:

  1. 本文参考了小康的配色,感谢大佬造的轮子。
  2. 好奇我的配色是怎么来的,这里免费不要钱,根据你喜欢的50种颜色智能生成配色,看看吧:https://colordrop.io/
  3. 调色色盘:https://colorme.io/

http://www.ppmy.cn/news/424654.html

相关文章

从零学习Nginx配置文件,呕心沥血w字长文

1 Nginx介绍 1 Nginx基本概念 可以理解为 nginx 是服务器的软件 1.1 反向代理 **正向代理&#xff1a;**需要在客户端&#xff08;浏览器&#xff09;配置代理服务器&#xff0c;通过代理服务器进行互联网访问。 反向代理&#xff1a;反向代理中&#xff0c;客户端只能感知…

Vue基础:常用12个内置指令、自定义指令、过滤器

目录 1. 内置指令 1.1 v-text 指令 1.2 v-html 指令 1.3 v-on基础 1.3.1 计数器案例 1.4 v-show 条件渲染 1.5 v-if 条件渲染 1.6 v-bind 1.6.1 图片切换案例 1.7 v-for 列表渲染 1.7.1 key原理&#xff08;面试常问&#xff09; 1.7.2 列表过滤 1.7.3 列表排序 1.…

iPhone人物拍照调色

iPhone人物拍照调色 曝光20 鲜明度16 高光-45 阴影34 对比度-20 亮度-19 黑点-6 饱和度33 自然饱和度20 色温-14 色调16 锐度19 清晰度25 噪点消除72 晕影33

iphone13 设备类型 DeviceType

iPhone13Mini "iPhone 13 Mini", iPhone13 "iPhone 13", iPhone13Pro "iPhone 13 Pro", iPhone13ProMax "iPhone 13 Pro Max", dModels - The iPhone Wiki​​​​​​​l​​​​​​​d 历年设备汇

各型号iPhone的屏幕参数 逻辑分辨率 物理分辨率 - iOS Device Display Summary - 更新到iPhone 13系列

详询&#xff1a; iOS设备分辨率 - 逻辑分辨率 - 屏幕参数 - iPhone/iPad/iWatch without Macbookhttps://tools.rudon.cn/electronics/resolution/ios/

iPhone12、iPhone12 Pro、iPhone12 Max、iPhone12 Pro Max 详细参数配置

iPhone12全系列依然采用刘海屏3D人脸设计&#xff0c;中框变成垂直中框&#xff0c;致敬iPhone4&#xff0c;iPhone12 5.4寸屏&#xff0c;iPhone12Max 6.1寸屏&#xff0c;两者都是后置双摄&#xff0c;拥有多彩配色&#xff0c;采用光面镀膜玻璃后盖。 iphone11爆降2000 太给…

iphone分辨率中的scale参数

A UIScreen object contains the bounding rectangle of the device’s entire screen. When setting up your application’s user interface, you should use the properties of this object to get the recommended frame rectangles for your application’s window. UISc…

使用Python抢IPhone7

使用Python抢IPhone7 老婆的iphone5已经用了很多年&#xff0c;作为一个疼老婆的好男人&#xff0c;为老婆换手机是最近的工作重点。虽然苹果公司并不饥饿营销&#xff0c;但是新一代的IPhone总是特别抢手&#xff0c;刚出来的那一阵儿&#xff0c;看新闻亮黑色的IPhone7竟然炒…