0

我正在构建一个显示noneblock依赖于它的isActive道具的组件。

我已经设法使它像这样slideInDown使用。react-animationsstyled-components

import styled, { keyframes } from 'styled-components';
import { ifProp } from 'styled-tools';
import { slideInDown } from 'react-animations';

const slideInAnimation = keyframes`${slideInDown}`;

const MyComponent = styled.div`
  animation: 0.4s ${slideInAnimation};
  display: ${ifProp('isActive', 'block', 'none')};
`;

我现在需要成功slideOutUp。但是,我不确定如何同时实现两者slideInDownslideOutUp动画。

我将如何做到这一点?

注意:这有效。但我不知道如何让它既滑入又滑出。我在下面尝试了类似的方法,但没有奏效。

import styled, { keyframes } from 'styled-components';
import { ifProp } from 'styled-tools';
import { slideInDown, slideOutUp } from 'react-animations';

const slideInAnimation = keyframes`${slideInDown}`;
const slideOutAnimation = keyframes`${slideOutUp}`;

const MyComponent = styled.div`
  animation: 0.4s ${slideInAnimation}, 0.4s ${slideOutAnimation};
  display: ${ifProp('isActive', 'block', 'none')};
`;
4

2 回答 2

2

我浏览了react-animations图书馆,我发现是slideOutUpvisibility: 'hidden.'

const slideOutUp: Animation = {
  from: {
    transform: translate3d(0, 0, 0)
  },
  to: {
    visibility: 'hidden',
    transform: translate3d(0, '-100%', 0)
  }
};

您可以使用animation-fill-mode: forwards,这有助于在动画结束后保留​​样式。

你可以做这样的事情(它有效):

const MyComponent = styled.div`
  animation: ${ifProp(
    "isActive",
    `0.4s ${slideInAnimation}`,
    `0.4s ${slideOutAnimation} forwards`
  )};
`;

这是工作示例,用于测试onClick我正在设置的事件{isActive: false}

https://codesandbox.io/s/949ql6p6no

于 2018-04-17T11:48:19.390 回答
0

Display没有动画。您需要使用不透明度来切换(1 到 0,反之亦然)和动画。

const myComponent = styled.div`
  animation: 0.4s ${slideInAnimation};
  opacity: ${ifProp('isActive', 1, 0)};
`;

考虑到您的代码像您告诉我的那样工作,您可以在动画中使用属性 infinte :

animation: 0.4s ${slideInAnimation} infinite;

我想它可以解决你的问题。

于 2018-04-17T10:24:35.680 回答