纯CSS实现按钮开关滑动特效

实现如图效果,按钮左右滑动

 代码如下:

<template>
  <div class="container">
    <div class="rate_tip">
      <span class="slider" :class="{ activeds: isRateActive == 'month' }">111</span>
      <span
        style="z-index: 66"
        :class="{ actived: isRateActive == 'week' }"
        @click="isRateActive = 'week'"
        >按周</span
      >
      <span
        style="z-index: 66"
        :class="{ actived: isRateActive == 'month' }"
        @click="isRateActive = 'month'"
        >按月</span
      >
    </div>
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue'
const isRateActive = ref('')
</script>

<style scoped lang="scss">
.rate_tip {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 2px 2px;
  background-color: rgba(32, 16, 128, 0.76);
  filter: brightness(90%);
  span {
    cursor: pointer;
    font-size: 12px;
    display: inline-block;
    padding: 2px 24px;
    color: #fff;
  }
  .slider {
    color: #fff;
    transition: all 0.5s;
    border-radius: 20px;
    display: inline-block;
    padding: 2px 24px;
    position: absolute;
    background-color: rgb(245, 244, 244);
  }
  .actived {
    color: #2e045f;
    border-radius: 20px;
    z-index: 99;
    font-weight: 600;
  }
  .activeds {
    margin-left: 75px;
  }
}
</style>

可以使用CSS3中的伪类和过渡属性来实现滑动按钮的效果。以下是一个简单的实现示例: HTML代码: ```html <label class="switch"> <input type="checkbox"> <span class="slider"></span> </label> ``` CSS代码: ```css .switch { position: relative; display: inline-block; width: 60px; height: 34px; } .switch input[type="checkbox"] { display: none; } .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; } .slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; } input:checked + .slider { background-color: #2196F3; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { transform: translateX(26px); } .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } ``` 解释: - `.switch`类设置了开关按钮的基本样式,包括宽高、定位等。 - `input[type="checkbox"]`选择器隐藏了原生的复选框。 - `.slider`类设置了按钮的背景色、过渡效果等。 - `.slider:before`伪类设置了按钮内部的小圆点,以及其过渡效果。 - `input:checked + .slider`选择器设置了按钮选中时的背景色。 - `input:focus + .slider`选择器设置了按钮获取焦点时的阴影效果。 - `input:checked + .slider:before`选择器设置了按钮选中时,内部小圆点的位移效果。 - `.slider.round`和`.slider.round:before`类用于设置圆形按钮的样式,可根据需要选择使用。 这样就可以实现一个简单的滑动按钮效果了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值