优化模板中心

This commit is contained in:
red-deng-deng 2022-01-21 15:59:43 +08:00
parent 24b82c46bd
commit 64ddb0f97d
1 changed files with 18 additions and 10 deletions

View File

@ -37,6 +37,7 @@ export default class mytemplate extends React.Component{
topbar:"",
top:"",
toTopshow:false,
toTopFlag:false,
center:"",
bottom:""
}
@ -48,8 +49,7 @@ export default class mytemplate extends React.Component{
}
componentDidMount(e){
//监听滚动条滚动事件
let self=this;
getThemeType().then(res=>{
@ -74,13 +74,19 @@ export default class mytemplate extends React.Component{
})
}).catch(err=>{
});
//监听滚动条滚动事件
this.refs.component.addEventListener('scroll',(event)=>{
let scrolHeight=event.target.scrollTop;
console.log('滚动事件',event);
if(scrolHeight>300){
this.setState({toTopFlag:true});
}else{
this.setState({toTopFlag:false});
}
})
}
bindHandleScroll = (event) => {
console.log('滚动事件');
console.log('滚动事件',event);
}
componentWillUnmount() {
window.removeEventListener('scroll', this.bindHandleScroll);
}
@ -341,10 +347,12 @@ export default class mytemplate extends React.Component{
})
}
</div>
<div ref="toTop" className="toTop-canvas" onMouseEnter={this.mouseupFn.bind(this)} onMouseLeave={this.mouseoverFn.bind(this)}>
<img className="toTopBtn" onClick={this.toTop.bind(this)} src={this.state.toTopshow?'https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/totopbtn.svg':'https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/willtotop.svg'} alt=""/>
{
this.state.toTopFlag?<div ref="toTop" className="toTop-canvas" onMouseEnter={this.mouseupFn.bind(this)} onMouseLeave={this.mouseoverFn.bind(this)}>
<img className="toTopBtn" onClick={this.toTop.bind(this)} src={this.state.toTopshow?'https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/totopbtn.svg':'https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/willtotop.svg'} alt=""/>
</div>:null
}
</div>
<div style={{textAlign:'center',color:'#BBC1D2',marginBottom:'15px'}}>到底部了哟,没有了哦</div>
</div>
</div>