import React, {Component} from "react"; import './guide.css' import guihome1 from "../../../images/guideimg/guihome1.png"; import guihome2 from "../../../images/guideimg/guihome2.jpg"; import guihome3 from "../../../images/guideimg/guihome3.jpg"; import guihome4 from "../../../images/guideimg/guihome4.jpg"; import guihome5 from "../../../images/guideimg/guihome5.jpg"; import guihome6 from "../../../images/guideimg/guihome6.jpg"; class Guide extends Component { constructor(props) { super(props); this.state={ pingmuz:"", page:1, mywidth:1, } } componentDidMount() { console.log("GuideGuideGuideGuide加载了") // 1366x768 // var mywidthone=7; var mywidthone=0; if(window.screen.width===1024){ mywidthone=1; } else if(window.screen.width===1280){ mywidthone=2; } else if(window.screen.width===1440){ mywidthone=3; } else if(window.screen.width===1680){ mywidthone=4; } else if(window.screen.width===1920){ mywidthone=5; } else if(window.screen.width===1366){ mywidthone=6; } else if(window.screen.width===1600){ mywidthone=7; } else{ mywidthone=5; } this.setState({ mywidth:mywidthone, }); } thissetPage=(i)=>{ this.setState({ page:i, }) if(i===7){ this.props.setwindowlocal("false"); } } render() { let {page,mywidth}=this.state; // console.log("屏幕宽度"); console.log(window.screen.width); console.log(mywidth); return (
{ page===1?
this.thissetPage(2)} />
:"" } { page===2?
this.thissetPage(3)}/>
: "" } { page===3?
this.thissetPage(4)}/>
: "" } { page===4?
this.thissetPage(5)}/>
: "" } { page===5?
this.thissetPage(6)}/>
: "" } { page===6?
this.thissetPage(7)}/>
: "" }
) } } export default Guide;