时间:2021-05-26
本着我为人人,人人为我的精神,敲过的代码就要分享出来!
项目需要做一个文字的轮播,开始想着是由下而上的滚动,但是还是写的不是很好,就先退而求其次,通过透明度来实现文字的滚动了(也不能说是滚动了,是切换)。
为了贴上来还是写了些注释的,也就不一一的解释了,很简单的代码,看注释就好了。(我就是懒)
import React, { Component } from "react"import { View, Text, TouchableOpacity } from "react-native"export default class TextLantern extends Component { constructor(props) { super(props) this.state = { nowText: "", // 显示的文本 opacity: 1, // 透明度 index: 0, // 下标 list: [], // 滚动的列表 } } componentWillMount() { const { list } = this.props this.setState({ nowText: list[0].title, // 插入显示的文本 list, // 滚动的列表 }) this.onStart() // 启动计时器 A } onStart = () => { const { Intervals = 5000 } = this.props // Intervals 可为参数非必传 this.timer = setInterval(() => { this.onDisappear() // 间隔Intervals毫秒启动计时器B }, Intervals) }; onDisappear = () => { this.timer1 = setInterval(() => { const { opacity, index, list } = this.state if (opacity === 0) { // 当透明度为0时候开始显示在一个文本 if (index + 2 > list.length) { // 当前显示的文本为最后一个时 重头再来 this.setState({ nowText: list[0].title, index: 0, }) } else { this.setState({ nowText: list[index + 1].title, // 下一个文本 index: index + 1, }) } this.onAppear() // 显示 clearInterval(this.timer1) return } this.setState({ opacity: parseFloat(Math.abs(opacity - 0.04).toFixed(2)), }) }, 20) }; onAppear = () => { this.timer2 = setInterval(() => { const { opacity } = this.state if (opacity === 1) { clearInterval(this.timer2) return } this.setState({ opacity: parseFloat(Math.abs(opacity + 0.04).toFixed(2)), }) }, 20) }; render() { const { nowText, opacity, list, index } = this.state return ( <View style={{ borderWidth: 1, margin: 10, padding: 5, borderColor: "#dddddd" }}> <TouchableOpacity activeOpacity={0.75} onPress={() => {console.log(list[index].address)}}> <View style={{ width: "80%" }}> <Text style={{ opacity, fontSize: 14, }} > {nowText} </Text> </View> </TouchableOpacity> </View> ) }}引用:
点击跳转说一下我的做法:
通过当前的 index 来拿出对应的address进行跳转。
react要用的话改一下标签就好了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了react-native圆弧拖动进度条实现的示例代码,分享给大家,具体如下:先上效果图因为需求需要实现这个效果图非原生实现,难点1:绘制使用svg难点
首先要确认已经配置好react-native的环境。#创建一个native应用,SimpleApp,然后进入项目目录react-nativeinitSimple
前言一种在ReactNative中封装的响应式Echarts组件,使用与示例请参见:react-native-echarts-demo近年来,随着移动端对数据可
reactnative实现登录功能,包括ui的封装、网络请求的封装、导航器的实现、点击事件。demo下载:react-native完整实现登录功能后台如果是sp
项目背景:手动link的安卓App1.下载react-native-code-pushnpminstall--savereact-native-code-pus