Joe主题为头像添加呼吸灯

Joe主题为头像添加呼吸灯

蓝逸轩
2022-09-11 / 0 评论 / 92 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2022年09月11日,已超过962天没有更新,若内容或图片失效,请留言反馈。

效果图

ly8d1n5d.png

登陆网站后台 - 主题设置 - 全局设置 - 自定义增加<head></head>里内容(非必填),将下列代码放置其中并保存设置

<style>
    /*头像呼吸光环和鼠标悬停旋转放大*/
    .avatar {
        border-radius: 50%;
        animation: light 4s ease-in-out infinite;
        transition: 0.5s;
    }
    .avatar:hover {
        transform: scale(1.15) rotate(720deg);
    }
    @keyframes light {
        0%{box-shadow: 0 0 4px #f00;}
        25%{box-shadow: 0 0 16px #0f0;} 
        50%{box-shadow: 0 0 4px #00f;}
        75%{box-shadow: 0 0 16px #0f0;} 
        100%{box-shadow: 0 0 4px #f00;}
    }
</style>
0

评论

博主关闭了所有页面的评论