当前位置 : 主页 > 网页制作 > React >

react-native – React Native – 如何进行模糊视图,如iOS或Instagram?

来源:互联网 收集:自由互联 发布时间:2021-06-15
背景透明度与BLUR 是否可以在不使用背景图像的情况下模糊视图?我想在模态中的背景模糊视图上显示父内容. 类似的这种: 试过react-native-blur: 它实际上模糊了背景图像.我想模糊并显
背景透明度与BLUR

是否可以在不使用背景图像的情况下模糊视图?我想在模态中的背景模糊视图上显示父内容.

类似的这种:

试过react-native-blur:

它实际上模糊了背景图像.我想模糊并显示模态背后的内容.

与react-native-overlay一起尝试:但没有变化.

好吧,如果你是

using expo

那么你应该去看看这个链接here

如果你像我一样

who loves to use ‘react-native init‘ and want some blurry effect based views then i have this for you!

https://github.com/voronianski/react-native-effects-view

一个很棒的图书馆

使用它会很简单

“如果对话框打开,则呈现模糊视图,否则渲染简单”,

这里有一个基本如何使用的简单示例!

...imports
var EffectsView = require('react-native-effects-view');

var App = React.createClass({
renderVibrant() {
    return (
        <View>
            <Text style={styles.text}>Do you feel blurry??</Text>
        </View>
    );
},

render() {
    return (
        <EffectsView 
            style={styles.view} 
            blurStyle="dark" 
            vibrantContent={this.renderVibrant()}
        >
            <Image style={styles.bg} source={require('image!bg')} />
        </EffectsView>
    );
}
});
网友评论