本着我为人人,人人为我的精力,敲过的代码就要分享出来!
项目须要做一个笔墨的轮播,最先想着是由下而上的转动,然则照样写的不是很好,就先退而求其次,经由过程透明度来完成笔墨的转动了(也不能说是转动了,是切换)。
为了贴上来照样写了些诠释的,也就不逐一的诠释了,很简单的代码,看诠释就好了。(我就是懒)
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>
)
}
}
援用:
const tProps = {
list: [
{ id: 1, title: "不是这件事很难,而是每件事都难", address: 1 },
{ id: 2, title: "稳食姐,犯罪啊", address: 2 },
{ id: 3, title: "半夜诉心声,何必太高清", address: 3 },
{ id: 4, title: "失恋唱情歌,等于漏煤气关窗", address: 4 },
],
}
...
<TextLantern {...tProps} />
点击跳转说一下我的做法:
经由过程当前的 index 来拿出对应的address举行跳转。
react要用的话改一下标签就好了。
好了好了。有题目的能够鄙人留言面。