您可以通过内联样式或样式组件进行反应的过渡吗?



是否可以使用样式表或样式组件在React Native中进行过渡?我在没有运气的情况下尝试以下内容。

import React from 'react'
import styled from 'styled-components/native'
import { Text, View, StyleSheet } from 'react-native'
export default class extends React.Component {
  render() {
    return (
      <Wrapper visible={visible}><Text>hello</Text>
    )
  }    
}
const Wrapper = styled.View`
  opacity: ${props => props.visible ? 1 : 0};
  transition: opacity 1s linear;
`
const styles = StyleSheet.create({
  wrapper: {
    opacity: 1,
    transition:'opacity 1s linear'
  }
});

React Native不支持React样式过渡,而是尝试RN动画视图库,它的工作原理非常相似(并使用内联样式/组件):

https://facebook.github.io/react-native/docs/animated.html

react Antial确实支持此类过渡。这是一个快速示例:

<View style={condition ? style.true : style.false} />
true: { 
  opacity: 1, 
  transition:'0.5s, transform 0.5s' 
},
false: { 
  opacity: 0 
}

相关内容

  • 没有找到相关文章

最新更新