javascript 当我到达父div的底部时,如何在MUI5中隐藏我的粘滞Div?

kgqe7b3p  于 2023-06-20  发布在  Java
关注(0)|答案(2)|浏览(112)

演示链接:
https://stackblitz.com/edit/react-5xt9r5?file=demo.tsx
我想隐藏一个粘滞的div,当我到达一个父div的底部,而向下滚动。
这是我如何设置父div和粘性div的代码示例

<Box
  sx={{
    width: 400,
    height: 300,
    overflow: 'auto',
    border: '1px solid #ccc',
    borderRadius: '4px',
  }}
>
  <ul>
    {Array.from({ length: 20 }, (_, index) => (
      <li key={index}>{`Text ${index + 1}`}</li>
    ))}
  </ul>
  <Box
    position="sticky"
    bottom={0}
    bgcolor="white"
    p={2}
    boxShadow={2}
    zIndex={100}
  >
    Hide this Div when parent div scrolled down
  </Box>
</Box>

我尝试对材质useScrollTrigger做些什么,但我找不到一个可以决定父目标的示例(实际工作的是什么)
https://mui.com/material-ui/react-app-bar/#back-to-top

mwngjboj

mwngjboj1#

嗨,我的朋友,还有另一个解决方案,使用useScrollTrigger

export default function BoxSx() {
  const parentRef = React.useRef(null);
  const [node, setNode] = React.useState(undefined);
  
  // showSticky is when you reach threshold
  const showSticky = useScrollTrigger({
    target: node,
    threshold: 100 // here you define the threshold to showSticky in true
  });

  // As refs starts with null we define this useEffect
  // and a state to update the current node when the component loads
  // we pass the node set in useEffect
  React.useEffect(() => {
    setNode(parentRef.current);
  }, []);
  
  // this console.log will show false or true related if the threshold was reached or not
  console.log(showSticky);

  return (
    <Box
      sx={{
        width: 400,
        height: 1000,
        overflow: 'auto',
        border: '1px solid #ccc',
        borderRadius: '4px',
      }}
      ref={parentRef}
    >
      <ul>
        {/* Generate a list of text items */}
        {Array.from({ length: 100 }, (_, index) => (
          <li key={index}>{`Text ${index + 1}`}</li>
        ))}
      </ul>
      <Box
        position="sticky"
        bottom={0}
        bgcolor="white"
        p={2}
        boxShadow={2}
        zIndex={100}
      >
        test
      </Box>
    </Box>
  );
}

希望有帮助

irlmq6kh

irlmq6kh2#

import * as React from 'react';
import Box from '@mui/material/Box';

export default function BoxSx() {
  const [hideSticky, setHideSticky] = React.useState(false);

  const handleScroll = (event) => {
    const target = event.target;
    if (target.scrollHeight - target.scrollTop === target.clientHeight) {
      setHideSticky(true);
    } else {
      setHideSticky(false);
    }
  };

  return (
    <Box
      sx={{
        width: 400,
        height: 300,
        overflow: 'auto',
        border: '1px solid #ccc',
        borderRadius: '4px',
      }}
      onScroll={handleScroll}
    >
      <ul>
        {Array.from({ length: 20 }, (_, index) => (
          <li key={index}>{`Text ${index + 1}`}</li>
        ))}
      </ul>
      {!hideSticky && (
        <Box
          position="sticky"
          bottom={0}
          bgcolor="white"
          p={2}
          boxShadow={2}
          zIndex={100}
        >
          Hide this Div when parent div scrolled down
        </Box>
      )}
    </Box>
  );
}

是一个解决方案..

相关问题