添加卡片擦亮动画效果

注意:本文操作步骤为 anzhiyu 主题,其他主题可以自行尝试,该方法通过外部引入,无需修改主题源文件

实现步骤

  • 新建文件 source/css/home.css 或在已引入的 css 中新增以下内容
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#recent-posts > .recent-post-item:not(a)::before {  
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 200%;
background: linear-gradient(to right, transparent, white, transparent);
transform: translateX(-200%);
transition: transform 0.5s linear;
z-index: 1;
}
#recent-posts > .recent-post-item:not(a):hover::before {
transform: translateX(100%) skewX(-60deg);
}
  • _config.anzhiyu.yml 主题配置文件下 inject 配置项中 head 处引入 home.css 文件
1
2
3
inject:  
head:
- <link rel="stylesheet" href="/css/home.css"> # 首页文章卡片擦亮效果

一键三连

1
hexo clean; hexo g; hexo s