css提示动画

需求:点击确认支付需要出现一个已确认的动画提示。
css提示动画_第1张图片
css提示动画_第2张图片
html代码

已确认
确认支付

css代码

.wrap{
        position: relative;
    }
    .hint{
        font-size: 0.2rem;
        position: absolute;
        display: inline-block;
        width: 1rem;
        height: 0.5rem;
        line-height: 0.5rem;
        text-align: center;
        background-color: black;
        opacity: 0.5;
        color: #fff;
        top: 2.5rem;
        left: 50%;
        margin-left: -0.5rem;
        display: none;
    }
    .animation{
        display: block;
        animation: animation ease 1s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }
    @keyframes animation{
        0%{
            opacity: 0;
            top:2rem;
        }
        100%{
            opacity: 0.5;
            top:2.5rem;
        }
    }

js代码
如果需要动画重复使用,则需要利用延时器在动画播放完毕之后删除原有动画。延时器时间要大于动画播放时间。

$('body').on('click','.butWrap',function () {
        $('.hint').addClass('animation');
        setTimeout(function () {
          $('.hint').removeClass('animation')
        },1100)
  })

你可能感兴趣的:(js,css动画,jquery)