zibll子比主题美化:给底部页脚二维码添加动态边框效果

百度已收录

文章最后更新时间:2025-01-11 09:58:36

演示效果

zibll子比主题美化:给底部页脚二维码添加动态边框效果-氯化钠资源网站

食用教程

将代码放置于子比主题的自定义CSS内即可

/*底部板块三图片border 氯化钠资源网 lzphy.top */
.footer-miniimg {
  p{
    position: relative;
    &:hover {
        filter: contrast(1.1);
    }
    
    &:active {
        filter: contrast(0.9);
    }
    &::before,
    &::after{
        content: "";
        border: 2px solid;
        border-image: linear-gradient(45deg, gold, deeppink) 1;
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        animation: clippath 3s infinite ;
    }
    &::before{
        animation: clippath 3s infinite -1.5s linear;
    }
  }
}

@keyframes clippath {
  0%,
  100% {
      clip-path: inset(0 0 96% 0);
      filter: hue-rotate(0deg);
  }
  25% {
      clip-path: inset(0 96% 0 0);
  }
  50% {
      clip-path: inset(96% 0 0 0);
      filter: hue-rotate(360deg);
  }
  75% {
      clip-path: inset(0 0 0 96%);
  }
}
/*底部板块三图片border 氯化钠资源网 lzphy.top */

本文链接:https://lzphy.top/1783/
© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容