-
Notifications
You must be signed in to change notification settings - Fork 0
/
otaku.js
114 lines (112 loc) · 3.62 KB
/
otaku.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import React, { Component } from 'react';
import { ImageBackground } from 'react-native';
import {
Container,
Text,
View,
Header,
Title,
ListItem,
List,
Button,
Left,
Right,
Body,
Icon,
} from 'native-base';
import Sound from 'react-native-sound';
let sound_1 = new Sound(require('./o1.mp3'));
let sound_2 = new Sound(require('./o2.mp3'));
export default class otaku extends Component {
constructor(props) {
super(props);
this.state = {
BG: null,
}
}
render() {
let time = this.state;
const { navigation } = this.props;
return (
<Container>
<Header
style={{ backgroundColor: "#00bfff" }}
androidStatusBarColor="#00bfff"
iosBarStyle="light-content"
>
<Left>
<Button transparent onPress={() => navigation.openDrawer()}>
<Icon name='menu' />
</Button>
</Left>
<Body>
<Title>猛男欢乐页!</Title>
</Body>
<Right/>
</Header>
<ImageBackground source={this.state.BG == null ? require('./p2.png') : this.state.BG}
style={{
width: "100%",
height: "100%",
}}
imageStyle={{
opacity: 0.3
}}>
<View>
<List>
<ListItem >
<Text>幸福小贴士:</Text>
<Button info bordered block iconLeft onPress={()=>{
fetch("https://hitokoto.matrix72.top/").then(
res => res.text()).then(json => alert(json));
}}>
<Icon name='heart' style={{ color: '#ED4A6A' }}/>
<Text style={{color:'black'}}>不幸福?点我!</Text>
</Button>
</ListItem>
<ListItem>
<Text>不看看ACGN里面怎么定义幸福吗?</Text>
<Button info bordered onPress={()=>{
fetch("https://otaku.matrix72.top/").then(
res => res.text()).then(json => alert(json));
}}>
<Icon name='key' />
</Button>
</ListItem>
<ListItem>
<Text>钉宫一顿骂,胜读十年书~</Text>
<Button info bordered onPress={()=>{sound_2.play();}}>
<Icon name={'play'} />
</Button>
<Text style={{width:10}}/>
<Button info bordered onPress={()=>{sound_1.play();}}>
<Icon name={'play'} />
</Button>
</ListItem>
<ListItem>
<Text>二次元随机萌音!</Text>
<Button info bordered onPress={()=>{
var xxx = new Sound('https://baka.matrix72.top/', Sound.MAIN_BUNDLE, (error) => {
if (error) {
console.log('failed to load the sound', error);
return;
}
xxx.play((success) => {
if (success) {
console.log('successfully finished playing');
} else {
console.log('playback failed due to audio decoding errors');
}
});
});
}}>
<Icon name={'play'} />
</Button>
</ListItem>
</List>
</View>
</ImageBackground>
</Container>
);
}
}