切换按钮组动画效果

html 复制代码
<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>按钮切换动画</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f0f0f0;
        }

        .container {
            display: flex;
            /* align-items: center; */
            position: relative;
            width: 300px;
            height: 50px;
            border-radius: 5px;
            /* 圆角更小 */
            overflow: hidden;
            background-color: #EBEBEB;
            /* 背景稍暗 */
            /* padding: 5px; 内边距 */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .button {
            width: 65px;
            margin: 5px;
            display: block;
            text-align: center;
            height: calc(100% - 10px);
            line-height: 40px;
            border: none;
            border-radius: 5px;
            background-color: transparent;
            cursor: pointer;
            font-size: 14px;
            color: #3B3B3B;
            /* 默认字体颜色为白色 */
            transition: background-color 0.3s, color 0.3s;
            position: relative;
            z-index: 2;
            /* background-color: red; */
        }

        .button:hover {
            background-color: rgba(255, 255, 255, 0.3);
            /* 悬停背景 */
        }

        .indicator {
            position: absolute;
            /* padding: 5px; */
            width: 65px;
            height: calc(100% - 10px);
            margin: 5px;
            background-color: #fff;
            /* 指示器颜色 */
            transition: transform 0.3s ease-in-out;
            z-index: 1;
            border-radius: 10px;
            /* 确保指示器在最下层 */
        }

        /* 为每个按钮添加对应的选中效果 */
        .button.selected {
            /* 选中时背景为白色 */
            color: black;
            /* 选中时字体为黑色 */
        }
    </style>
</head>

<body>

    <div class="container">
        <div class="indicator" id="indicator"></div>
        <span class="button selected" onclick="moveIndicator(0)">按钮 1</span>
        <span class="button" onclick="moveIndicator(1)">按钮 2</span>
        <span class="button" onclick="moveIndicator(2)">按钮 3</span>
        <span class="button" onclick="moveIndicator(3)">按钮 4</span>
    </div>

    <script>
        function moveIndicator(index) {
            const indicator = document.getElementById('indicator');
            const buttons = document.querySelectorAll('.button');
            const offset = index * 75; // 每个按钮的宽度为 75px
            indicator.style.transform = `translateX(${offset}px)`;

            // 更新按钮状态
            buttons.forEach((button, i) => {
                if (i === index) {
                    button.classList.add('selected'); // 添加选中样式
                } else {
                    button.classList.remove('selected'); // 移除其他按钮的选中样式
                }
            });
        }
    </script>

</body>

</html>
相关推荐
小马哥编程1 小时前
【前端基础】CSS基础
前端·css
Justinc.2 小时前
CSS3新增边框属性(五)
前端·css·css3
fruge2 小时前
纯css制作声波扩散动画、js+css3波纹催眠动画特效、【css3动画】圆波扩散效果、雷达光波效果完整代码
javascript·css·css3
As977_3 小时前
前端学习Day12 CSS盒子的定位(相对定位篇“附练习”)
前端·css·学习
susu10830189113 小时前
vue3 css的样式如果background没有,如何覆盖有background的样式
前端·css
Ocean☾3 小时前
前端基础-html-注册界面
前端·算法·html
我要洋人死5 小时前
导航栏及下拉菜单的实现
前端·css·css3
小白白一枚11116 小时前
css实现div被图片撑开
前端·css
@蒙面大虾17 小时前
CSS综合练习——懒羊羊网页设计
前端·css
顾菁寒17 小时前
WEB第二次作业
前端·css·html