gpt4 book ai didi

css - 在 React App 中调用 API 后不透明度转换的时间

转载 作者:行者123 更新时间:2023-11-28 15:12:56 25 4
gpt4 key购买 nike

这是一个有趣的问题。我的 React 应用程序有问题。我有一个调用 getRandomQuote() 的按钮。从 api 获取一行文本并将其传递到前端。我希望文本不透明度为 0,然后在文本出现后变为 1。相反,文本在被调用后出现,然后变为 0 不透明度,然后过渡到不透明度 1。

getRandomQuote() {

document.getElementById('quoteText').style.opacity = 0;

axios.get('http://localhost:3100/quote').then(response => {

console.log('1111111', response);

this.setState( {quote: response.data[0].quote_text, quoteAuthor: response.data[0].author} );
document.get
document.getElementById('quoteText').style.opacity = 1;

})
}

索引.css

.quoteText {
opacity: 0;
transition: opacity 1s ease-in-out;

}

.quoteAuthor {
transition: 1s ease-in-out;

}

应用内容.js

render() {
return (
<div className="app" style={ styles.appContent }>
<header>
<i class="fa fa-arrow-left" aria-hidden="true"></i>
</header>
{/* <ParticleContainer style ={styles.particleBackground}></ParticleContainer> */}
<div style={ styles.aboveParticles }>
<Title words="QUOTE MACHINE" style={styles.title}/>
<div style={ styles.quoteBox }>
<h2 id="quoteText" className="quoteText" style={styles.quoteText }>{ this.state.quote }</h2>
<h2 id="quoteAuthor" className="quoteAuthor" style={ styles.quoteAuthor }>{ this.state.quoteAuthor }</h2>
</div>
<button className ="button" onClick={ ()=>{this.getRandomQuote(); this.changeBackgroundColor(); } } style={ styles.button }>Retrieve a Quote</button>
</div>
</div>
);
}

最佳答案

您的描述不明确。第一次点击后文本将以 0 到 1 的不透明度显示,第二次点击后以 1 到 0 的不透明度消失,然后以 0 到 1 的不透明度显示。

如果您的意思是您希望文本在第二次点击后立即消失,您可以将 getRandomQuote 的第一行更改为

this.setState({quote: ''});

关于css - 在 React App 中调用 API 后不透明度转换的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47933340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com