hexo标题抖音特效 2020-03-13 | hexo | 字数统计: 152 效果展示 鼠标触碰题目会有如下效果 实现 修改\themes\next\source\css_custom\custom.styl,添加如下语句即可 123456789101112131415161718//标题抖音化.site-title:hover, .post-title:hover { animation: shake-it .5s reverse infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);}@keyframes shake-it { 0% { text-shadow: 0 0 rgba(0, 255, 255, .5), 0 0 rgba(255, 0, 0, .5); } 25% { text-shadow: -2px 0 rgba(0, 255, 255, .5), 2px 0 rgba(255, 0, 0, .5); } 50% { text-shadow: -5px 0 rgba(0, 255, 255, .5), 3px 0 rgba(255, 0, 0, .5); } 100% { text-shadow: 3px 0 rgba(0, 255, 255, .5), 5px 0 rgba(255, 0, 0, .5); }} 重新hexo g -d即可