HTML+CSS 动态按钮灯光效果

先上效果

🌟灯光效果能够为场景带来生命力和动感。将这种效果应用到网页设计中,CSS酷炫灯光效果能够创造出令人惊叹的视觉效果,增强用户界面的吸引力和现代感。本文将探讨如何使用CSS来实现各种灯光效果,从简单的发光到复杂的光线动画,为网页设计带来前所未有的视觉体验。


完整代码 

以下是完整代码:

HTML:

<a href="#" class="item item1">
        HELLO
        <span></span>
        <span></span>
        <span></span>
        <span></span>
    </a>
    <a href="#" class="item item2">
        提交
        <span></span>
        <span></span>
        <span></span>
        <span></span>
    </a>
    <a href="#" class="item item3">
        确认
        <span></span>
        <span></span>
        <span></span>
        <span></span>
    </a>

CSS代码:

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'fangsong';
        }

        body {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgb(0, 0, 0);
        }

        .item {
            position: relative;
            margin: 50px;
            width: 300px;
            height: 80px;
            text-align: center;
            line-height: 80px;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 35px;
            letter-spacing: 5px;
            color: aqua;
            overflow: hidden;
            -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(6, 133, 133, 0.3));
        }

        .item:hover {
            background-color: aqua;
            box-shadow: 0 0 5px aqua,
                0 0 75px aqua,
                0 0 155px aqua;
            color: black;
        }

        .item span:nth-of-type(1) {
            position: absolute;
            left: -100%;
            width: 100%;
            height: 3px;
            background-image: linear-gradient(to left, aqua, transparent);
            animation: btnanmaiton 1s linear infinite;
        }

        @keyframes btnanmaiton {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 100%;
            }
        }

        .item span:nth-of-type(2) {
            position: absolute;
            top: -100%;
            right: 0;
            width: 3px;
            height: 100%;
            background-image: linear-gradient(to top, aqua, transparent);
            animation: two 1s linear infinite;
            animation-delay: 0.25s;
        }

        @keyframes two {
            0% {
                top: -100%;
            }

            50%,
            100% {
                top: 100%;
            }
        }

        .item span:nth-of-type(3) {
            position: absolute;
            right: -100%;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-image: linear-gradient(to right, aqua, transparent);
            animation: three 1s linear infinite;
            animation-delay: 0.5s;
        }

        @keyframes three {
            0% {
                right: -100%;
            }

            50%,
            100% {
                right: 100%;
            }
        }

        .item span:nth-of-type(4) {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 3px;
            height: 100%;
            background-image: linear-gradient(to bottom, aqua, transparent);
            animation: zuo 1s linear infinite;
            animation-delay: 0.75s;
        }

        @keyframes zuo {
            0% {
                bottom: -100%;
            }

            50%,
            100% {
                bottom: 100%;
            }
        }

        .item1 {
            filter: hue-rotate(100deg);
        }

        .item3 {
            filter: hue-rotate(250deg);
        }

🌟 关键技术点如下:

  1. 鼠标悬停效果:

    1. .item:hover选择器为按钮提供了鼠标悬停时的动态效果,包括背景颜色变化、多层阴影效果和文本颜色变化。

  2. 动画效果:

    1. 四个span元素通过绝对定位放置在按钮的四周,并通过@keyframes定义了不同的线性渐变背景和动画效果。这些动画在按钮的不同边上模拟光线扫过的效果。

  3. 动画延迟:

    1. 每个动画都设置了不同的animation-delay,以确保光线效果以一定的顺序和间隔出现,增强视觉效果。

  4. 滤镜效果:

    1. .item1.item3类为特定的按钮提供了filter: hue-rotate()效果,这将改变按钮的颜色色调,增加样式的多样性。


🌟 综上,效果实现了, 后续有什么想要的欢迎大家留言,也可以加喔微信, 18634371151,欢迎~

🌟 往期精彩,可以关注博主看左侧专栏,一定有你需要的!!!

🌟 关注耀南.,探索更多精彩的动画效果!🚀

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

耀南.

你的鼓励将是我最最最最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值