亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Can slider tracking animation be disabled?
P粉460377540
P粉460377540 2024-03-28 19:17:20
0
1
534

MUI has a slider component: https://mui.com/material-ui/react-slider/

I'm trying to figure out how to disable the animation that plays on a small block to move it to a new position so that it moves immediately. Is there any way to do this?

P粉460377540
P粉460377540

reply all(1)
P粉926174288

You need to use the style utility to turn off the transition attribute of the slider's thumb and track elements:

import Slider from '@mui/material/Slider';
import { styled } from '@mui/material/styles';

const CustomSlider = styled(Slider)(({ theme }) => ({
  "& .MuiSlider-thumb": {
    transition: 'none'
  },
  "& .MuiSlider-track": {
    transition: 'none'
  },
}));
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template