溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CSS+JS怎么實(shí)現(xiàn)水滴漣漪動畫按鈕效果

發(fā)布時(shí)間:2021-03-17 13:38:32 來源:億速云 閱讀:186 作者:清風(fēng) 欄目:web開發(fā)

這篇文章主要為大家展示了CSS+JS怎么實(shí)現(xiàn)水滴漣漪動畫按鈕效果,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶大家一起來研究并學(xué)習(xí)一下“CSS+JS怎么實(shí)現(xiàn)水滴漣漪動畫按鈕效果”這篇文章吧。

代碼如下所示:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .btn{ 
            display: block; 
            width: 300px; 
            height: 100px;
            margin: 50px; 
            outline: 0; 
            overflow: hidden;  
            position: relative; 
            transition: .3s; 
            cursor: pointer; 
            user-select: none;  
            text-align: center; 
            line-height: 100px; 
            font-size: 50px; 
            background: tomato; 
            color: #fff;  
            border-radius: 10px;
        }
        .btn>span{ 
            position: absolute; 
            left: 0; 
            top: 0;
            width: 100%; 
            height: 100%;}
        .btn>span:after{ 
            content: ''; 
            position: absolute; 
            background: transparent; 
            border-radius:50%; 
            width: 100%; 
            padding-top: 100%; 
            margin-left: -50%; 
            margin-top: -50%; 
            left: var(--x,-100%); 
            top: var(--y,-100%); 
        }
        .btn:active{ 
            background: orangered;
        }
        .btn>input[type=checkbox]{
            display: none
        }
        .btn>input[type=checkbox]+span:after{
            animation: ripple-in 1s;
        }
        .btn>input[type=checkbox]:checked+span:after{
            animation: ripple-out 1s;
        }
        @keyframes ripple-in{
            from {
                transform: scale(0);
                background: rgba(0,0,0,.25)
            }
            to {
                transform: scale(1.5);
                background: transparent
            }
        }
        @keyframes ripple-out{
            from {
                transform: scale(0);
                background: rgba(0,0,0,.25)
            }
            to {
                transform: scale(1.5);
                background: transparent
            }
        }
    </style>
</head>
<body>
    <label class="btn" tabindex="1">
        <input type="checkbox"><span onclick="ripple(this,event)">button</span>
    </label>
</body>

<script>
    function ripple(dom,ev){
        console.log(ev)
        var x = ev.offsetX;
        var y = ev.offsetY;
        dom.style.setProperty('--x',x+'px');
        dom.style.setProperty('--y',y+'px');
}
</script>
</html>

CSS+JS怎么實(shí)現(xiàn)水滴漣漪動畫按鈕效果

以上就是關(guān)于“CSS+JS怎么實(shí)現(xiàn)水滴漣漪動畫按鈕效果”的內(nèi)容,如果改文章對你有所幫助并覺得寫得不錯(cuò),勞請分享給你的好友一起學(xué)習(xí)新知識,若想了解更多相關(guān)知識內(nèi)容,請多多關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI