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

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!