联系我们
简单又实用的WordPress网站制作教学
当前位置:网站首页 > 网页前端技术 > 正文

分享按钮点击CSS3特效:酷炫发散效果 - Web前端

作者:98wpeu发布时间:2026-09-12分类:网页前端技术浏览:6


导读:按钮点击CSS3特效:鼠标点击按钮酷炫发散效果。这个效果很实用的,大家可以看下DemO。效果图:DEMO代码走一波:<!DOCtype html><HTML l...

按钮点击CSS3特效:鼠标点击按钮酷炫发散效果。这个效果很实用的,大家可以看下DemO。效果图:

QQ截图20200901111059.jpg

DEMO代码走一波:

<!DOCtype html>
<HTML lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Web前端之家https://www.jiangweishan.com</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)">WEB前端之家</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>

其实这个只是点击,有时候,我们需要滑动,你直接把点击事件改成hover就可以了。

标签:按钮酷炫特效效果WebCSS3


网页前端技术排行
最近发表
网站分类
标签列表