怎么在react中使用native實(shí)現(xiàn)文字輪播?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比黃梅網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式黃梅網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋黃梅地區(qū)。費(fèi)用合理售后完善,10年實(shí)體公司更值得信賴。
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, // 下標(biāo) list: [], // 滾動(dòng)的列表 } } componentWillMount() { const { list } = this.props this.setState({ nowText: list[0].title, // 插入顯示的文本 list, // 滾動(dòng)的列表 }) this.onStart() // 啟動(dòng)計(jì)時(shí)器 A } onStart = () => { const { Intervals = 5000 } = this.props // Intervals 可為參數(shù)非必傳 this.timer = setInterval(() => { this.onDisappear() // 間隔Intervals毫秒啟動(dòng)計(jì)時(shí)器B }, Intervals) }; onDisappear = () => { this.timer1 = setInterval(() => { const { opacity, index, list } = this.state if (opacity === 0) { // 當(dāng)透明度為0時(shí)候開始顯示在一個(gè)文本 if (index + 2 > list.length) { // 當(dāng)前顯示的文本為最后一個(gè)時(shí) 重頭再來 this.setState({ nowText: list[0].title, index: 0, }) } else { this.setState({ nowText: list[index + 1].title, // 下一個(gè)文本 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: "穩(wěn)食姐,犯法啊", address: 2 }, { id: 3, title: "夜半訴心聲,何須太高清", address: 3 }, { id: 4, title: "失戀唱情歌,即是漏煤氣關(guān)窗", address: 4 }, ], } ... <TextLantern {...tProps} />
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。
網(wǎng)頁標(biāo)題:怎么在react中使用native實(shí)現(xiàn)文字輪播
本文地址:http://aaarwkj.com/article38/pjsdsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、外貿(mào)網(wǎng)站建設(shè)、響應(yīng)式網(wǎng)站、外貿(mào)建站、手機(jī)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)