main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
912 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { m, MotionProps } from 'framer-motion';
|
---|
| 2 | // @mui
|
---|
| 3 | import Box, { BoxProps } from '@mui/material/Box';
|
---|
| 4 | // hooks
|
---|
| 5 | import { useResponsive } from 'src/hooks/use-responsive';
|
---|
| 6 | //
|
---|
| 7 | import { varContainer } from './variants';
|
---|
| 8 |
|
---|
| 9 | // ----------------------------------------------------------------------
|
---|
| 10 |
|
---|
| 11 | type IProps = BoxProps & MotionProps;
|
---|
| 12 |
|
---|
| 13 | interface Props extends IProps {
|
---|
| 14 | children: React.ReactNode;
|
---|
| 15 | disableAnimatedMobile?: boolean;
|
---|
| 16 | }
|
---|
| 17 |
|
---|
| 18 | export default function MotionViewport({
|
---|
| 19 | children,
|
---|
| 20 | disableAnimatedMobile = true,
|
---|
| 21 | ...other
|
---|
| 22 | }: Props) {
|
---|
| 23 | const smDown = useResponsive('down', 'sm');
|
---|
| 24 |
|
---|
| 25 | if (smDown && disableAnimatedMobile) {
|
---|
| 26 | return <Box {...other}>{children}</Box>;
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | return (
|
---|
| 30 | <Box
|
---|
| 31 | component={m.div}
|
---|
| 32 | initial="initial"
|
---|
| 33 | whileInView="animate"
|
---|
| 34 | viewport={{ once: true, amount: 0.3 }}
|
---|
| 35 | variants={varContainer()}
|
---|
| 36 | {...other}
|
---|
| 37 | >
|
---|
| 38 | {children}
|
---|
| 39 | </Box>
|
---|
| 40 | );
|
---|
| 41 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.