项目需要做一个文字的轮播,开始想着是由下而上的滚动,但是还是写的不是很好,就先退而求其次,通过透明度来实现文字的滚动了(也不能说是滚动了,是切换)。
为了贴上来还是写了些注释的,也就不一一的解释了,很简单的代码,看注释就好了。(我就是懒)
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}
) } }
引用:
<TextLantern {...tProps} />
点击跳转说一下我的做法:
通过当前的 index 来拿出对应的address进行跳转。
react要用的话改一下标签就好了。
原文链接:https://www.f2er.com/js/31333.html