search

Home  >  Q&A  >  body text

Can slider tracking animation be disabled?

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粉460377540P粉460377540291 days ago450

reply all(1)I'll reply

  • P粉926174288

    P粉9261742882024-03-29 16:17:04

    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'
      },
    }));

    reply
    0
  • Cancelreply