Javascript:fadeIn()函数不工作?

时间:2016-08-09 08:20:09

标签: javascript jquery jquery-animate

我有两个功能。

单击导航栏中的菜单项时滚动到特定div的

import React, { Component } from 'react'; import { AppRegistry, ListView, Text, View } from 'react-native'; export default class MyScene extends Component { getDefaultProps() { return { title: 'MyScene' }; } render() { return ( <View> <Text>Hi! My name is {this.props.title}.</Text> </View> ) } } //import MyScene from './MyScene'; class YoDawgApp extends Component { render() { return ( <MyScene /> ) } } AppRegistry.registerComponent('YoDawgApp', () => YoDawgApp);

setBindings(),第二个函数是一个简单的函数,它使用fadeIn()来淡入和淡出特定的div。

问题是当我在代码中使用aboutSectionFadeIn()时,setBindings()停止在aboutSection div上工作,它停止滚动到单击的div。我不明白为什么。有什么想法吗?

以下是javascript代码:

aboutSectionFadeIn()

0 个答案:

没有答案