change background image of webkit-slider-thumb by jquery

前端 未结 4 1397
死守一世寂寞
死守一世寂寞 2021-01-22 17:56

I searched for a while but couldn\'t find anything useful.I have the following css

 input[type=\"range\"]::-webkit-slider-thumb {
       -webkit-appearance: none         


        
4条回答
  •  滥情空心
    2021-01-22 18:40

    input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      margin: 50px 0;
    }
    input[type=range]:focus {
      outline: none;
    }
    input[type=range]::-webkit-slider-runnable-track {
      width: 100%;
      height: 8.4px;
      cursor: pointer;
      box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
      background: #3071a9;
      border-radius: 1.3px;
      border: 0.2px solid #010101;
    }
    input[type=range]::-webkit-slider-thumb {
      height: 50px;
      width: 50px;
      border-radius: 3px;
      background-color: transparent;
      background: url(https://i.stack.imgur.com/QneFV.png) center center no-repeat;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -23px;
    }
    input[type=range]:focus::-webkit-slider-runnable-track {
      background: #367ebd;
    }
    input[type=range]::-moz-range-track {
      width: 100%;
      height: 8.4px;
      cursor: pointer;
      box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
      background: #3071a9;
      border-radius: 1.3px;
      border: 0.2px solid #010101;
    }
    input[type=range]::-moz-range-thumb {
      height: 50px;
      width: 50px;
      border-radius: 3px;
      background-color: transparent;
      background: url(https://i.stack.imgur.com/QneFV.png) center center no-repeat;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -23px;
    }
    input[type=range]::-ms-track {
      width: 100%;
      height: 8.4px;
      cursor: pointer;
      background: transparent;
      border-color: transparent;
      color: transparent;
    }
    input[type=range]::-ms-fill-lower {
      background: #2a6495;
      border: 0.2px solid #010101;
      border-radius: 2.6px;
      box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    }
    input[type=range]::-ms-fill-upper {
      background: #3071a9;
      border: 0.2px solid #010101;
      border-radius: 2.6px;
      box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    }
    input[type=range]::-ms-thumb {
      height: 50px;
      width: 50px;
      border-radius: 3px;
      background-color: transparent;
      background: url(https://i.stack.imgur.com/QneFV.png) center center no-repeat;
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -23px;
    }
    input[type=range]:focus::-ms-fill-lower {
      background: #3071a9;
    }
    input[type=range]:focus::-ms-fill-upper {
      background: #367ebd;
    }

提交回复
热议问题