美丽的开关

在这里插入图片描述

<template>
  <div class="div_a_b">
    <div class="div_a">
      <div>课堂评价div>
      <div>评价对象div>
      <div>评分类型div>
      <div>评价频率div>
      <div>评价权重div>
      <div>分类排序div>
      <div>家长评价div>
      <div>学生评价div>
      <div>是否启用div>
    div>
    <div class="div_b">
      <div>
        <input type="checkBox" >
      div>
      <div>
        <select>
          <option>老师option>
          <option>学生option>
          <option>老师option>
        select>
      div>
      <div>
        <input type="checkBox" class="switch">
      div>
      <div>
        <input type="checkBox" class="switch">
      div>
      <div>
        <input type="checkBox" class="switch">
      div>
      <div>
        <input type="checkBox" class="switch">
      div>
      <div>
        <input type="checkBox" class="switch">
      div>

    div>
  div>template><script>

  export default {
    name: 'CommentSetting',
  }script><style scoped>
  .div_a_b
  {
    margin-left: 100px;
    display: flex;
    flex-direction:row;
  }
  .div_a
  {
    display: flex;
    flex-direction: column;
  }
  .div_b
  {
    margin-left: 100px;
    display: flex;
    flex-direction: column;
  }
  input[type='checkBox'].switch{
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 10px;
    transition: border-color .3s, background-color .3s;
  }

  input[type='checkBox'].switch::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height:1rem;
    border-radius: 50%;
    background: #fff;
    Box-shadow: 0 0 2px, #999;
    transition:.4s;
    top: 2px;
    position: absolute;
    left: 2px;
  }

  input[type='checkBox'].switch:checked {
    background: rgb(19, 206, 102);
  }
  /* 当input[type=checkBox]被选中时:伪元素显示下面样式 位置发生变化 */
  input[type='checkBox'].switch:checked::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 2px;
  }style>

在这里插入图片描述

相关文章

一:display:flex布局display:flex是一种布局方式。它即可以...
1. flex设置元素垂直居中对齐在之前的一篇文章中记载过如何...
移动端开发知识点pc端软件和移动端apppc端软件是什么,有哪些...
最近挺忙的,准备考试,还有其他的事,没时间研究东西,快周...
display:flex;把容器设置为弹性盒模型(设置为弹性盒模型之后...
我在网页上运行了一个Flex应用程序,我想使用Command←组合键...