美文网首页
上下浮动小tip

上下浮动小tip

作者: 顺小星 | 来源:发表于2020-12-22 16:00 被阅读0次
    image.png

    代码如下:

    .second {
            width: 62px;
            height: 55px;
            text-align: center;
            padding-top: 2px;
            color: #fff;
            font-size: 12px;
            background: url('/static/image/wenshidapeng/activePeng.png') no-repeat;
            position: absolute;
            top: 440px;
            right: 200px;
            cursor: pointer;
            z-index: 99;
            animation: heart 1.3s ease-in-out 2.7s infinite alternate;
        }
    
        @keyframes heart {
            from {
                transform: translate(0, -4px)
            }
    
            to {
                transform: translate(0, 4px)
            }
        }
    

    我是阿星,希望你开心。

    相关文章

      网友评论

          本文标题:上下浮动小tip

          本文链接:https://www.haomeiwen.com/subject/rqusnktx.html