纯JS实现按钮抖动效果

纯 JS 代码实现按钮左右抖动效果代码,基本不会存在与 jquery 脚本可能冲突的情况。

效果如下:

JS 实现按钮抖动效果

HTML 代码:

<button class="btn" id="btn">Just a button</button>

CSS 代码:

body {
    min-height: 100vh;
    font-family: Roboto,Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1499f7;
}

.btn {
    -webkit-appearance: none;
    border: 0;
    position: relative;
    height: 63px;
    width: 240px;
    padding: 0;
    cursor: pointer;
    border-radius: 32px;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white,black);
}

JS 代码:

document.getElementById('btn').addEventListener('click', function(e) {
    Shaking(e.target)
})

function Shaking(el) {
    const maxDistance = 5 // 抖动偏移距离
    const interval = 12 // 抖动快慢,数字越小越快,太小 DOM 反应不过来,看不出动画
    const quarterCycle = 8 // 一次完整来回抖动的四分之一周期
    let curDistance = 0
    let direction = 1
    const timer = setInterval(function() {
        if (direction > 0) {
            curDistance++
            if (curDistance === maxDistance) {
                direction = -1
            }
        } else {
            curDistance--
            if (curDistance === -maxDistance) {
                direction = 1
            }
        }
        el.style.left = curDistance + 'px';
    }, interval)
    setTimeout(function() {
        clearInterval(timer)
        el.style.left = '0 px';
    }, maxDistance * interval * quarterCycle);
}

「点点赞赏,手留余香」

0

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
码云笔记 » 纯JS实现按钮抖动效果

发表回复