子比主题美化-导航栏悬挂年兽

子比主题美化-导航栏悬挂年兽

演示:

20240223132307293-nianshou

自定义css:

/*年兽*/
@media screen and (min-width: 850px){
    .NewYear {
        width: 150px;
        height: 200px;
        display: inline-block;
        background: url(https://www.docn.net/img/newyear.png) no-repeat 50%/100%;
        vertical-align: middle;
        position: fixed;
        left: 85%;
        top: 55px;
        z-index: 50;
        cursor: pointer;
        animation: new-year 1.2s ease-in-out 0s infinite alternate;
        margin-left: -1px;
        transform-origin: 50% 0;
        pointer-events: none;
        z-index: 999;
    }
    }
    @keyframes new-year{
      0% {
        transform: rotate(10deg);
    }
      100%{
                transform: rotate(-10deg);
      }
    }

自定义html:

<!-- 年兽 -->
<div class="NewYear"></div>

注:年兽图片素材为网络资源,请勿引用本站链接

© 版权声明
THE END
喜欢就支持一下吧
点赞16 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容