-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.js
69 lines (65 loc) · 3.1 KB
/
HomePage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React, { Component, } from 'react'
import { Popover } from 'antd';
import './HomePage.less'
import DecimalStep from './DecimalStep.js'
import Search from './Search.js'
import MyButton from './myButton.js'
import InputText from './InputText.js'
import MyImg from './MyImg.js'
import MyAudio from './MyAudio'
import MyMusic from './MyMusic'
import MyVideo from './MyVideo'
import MyMessage from './MyMessage'
export default class HomePage extends Component {
render() {
return (
<div className='content-page-all' >
<div className='Icon-Music'>
<MyMusic />
</div>
<div className="video-box">
<MyVideo />
</div>
<div className='content-page-center'>
<div className='content-page-center-top'>
<div className='content-page-center-top-left'>
<Search />
<InputText />
<DecimalStep />
<MyButton />
<div className='content-page-center-output'>
<div className='content-page-center-output-audio'>
<MyAudio />
</div>
</div>
</div>
<div className='content-page-center-top-right'>
<MyImg />
</div>
</div>
<div className='content-page-center-bottom'>
<ul className='contributors-list'>
<Popover content="代码贡献者">
<a href='https://github.com/Mr47121836' target="_blank" rel="noopener noreferrer" >
<span class="contributors-list-image">
<img src="https://avatars.githubusercontent.com/u/66686828?s=96&v=4" style={{ width: "48px", height: "48px", borderRadius: "50%" }} ></img>
</span>
</a>
</Popover>
<Popover content="xcw模型贡献者">
<a href='https://space.bilibili.com/18361315?spm_id_from=333.337.0.0' target="_blank" rel="noopener noreferrer" >
<span class="contributors-list-image">
<img src="https://i1.hdslb.com/bfs/face/11a42fab885808cd3d3c6fd61a73767bc1d2e4f5.jpg@240w_240h_1c_1s.webp" referrer="no-referrer" style={{ width: "48px", height: "48px", borderRadius: "50%" }} ></img>
</span>
</a>
</Popover>
</ul>
<div className='success-message'>
<MyMessage/>
</div>
</div>
</div>
</div>
)
}
}