xxxxxxxxxx
1
<template>
2
<mdb-container class="white-text text-center d-flex justify-content-center">
3
<div class="mask heavy-rain-gradient"></div>
4
<mdb-card class="mobile-view">
5
<mdb-card-header class="pt-1 pb-1 container-fluid phone-header">
6
<mdb-row class="d-flex justify-content-between">
7
<mdb-col col="2">
8
<mdb-icon size="sm" icon="wifi"></mdb-icon>
9
</mdb-col>
10
<mdb-col col="3">
11
<mdb-icon size="sm" class="pr-2" icon="headphones-alt"></mdb-icon>
12
<mdb-icon size="sm" icon="battery-full"></mdb-icon>
13
</mdb-col>
14
</mdb-row>
15
</mdb-card-header>
16
<mdb-card-header class="pb-1 app-frame">
17
<mdb-icon icon="chevron-left" size="lg" class="float-left mt-1"></mdb-icon>
18
<p>
19
<mdb-icon class="pr-2" icon="itunes-note" fab />
20
<strong>Music App</strong> -
21
<small>click play!</small>
22
</p>
23
</mdb-card-header>
24
25
<mdb-card-body class="p-0 m-0 mobile-body d-flex align-items-center">
26
<mdb-container fluid>
27
<mdb-line-chart :data="chartData" :options="chartOptions" :width="600" :height="200"></mdb-line-chart>
28
</mdb-container>
29
</mdb-card-body>
30
<mdb-card-footer>
31
<div class="title-container">
32
<p :class="play ? 'music-title' : ''">
33
<strong>{{music[active].artist}}</strong>
34
- {{music[active].song}}
35
</p>
36
</div>
37
<audio ref="music" preload="true" :src="music[active].source"></audio>
38
</mdb-card-footer>
39
<mdb-card-footer class="panel">
40
<mdb-icon size="2x" class="p-3 pointer" icon="angle-double-left" @click.native="previous" />
41
<mdb-icon
42
size="2x"
43
class="p-3 pointer"
44
far
45
:icon="play ? 'pause-circle': 'play-circle'"
46
@click.native="togglePlay"
47
/>
48
<mdb-icon size="2x" class="p-3 pointer" icon="angle-double-right" @click.native="next" />
49
</mdb-card-footer>
50
<mdb-card-footer class="app-frame container">
51
<mdb-row class="d-flex justify-content-center">
52
<mdb-col col="2">
53
<mdb-icon class="pointer" icon="facebook-f" fab />
54
</mdb-col>
55
<mdb-col col="2">
56
<mdb-icon class="pointer" icon="twitter" fab />
57
</mdb-col>
58
<mdb-col col="2">
59
<mdb-icon class="pointer" icon="spotify" fab />
60
</mdb-col>
61
</mdb-row>
62
</mdb-card-footer>
63
</mdb-card>
64
</mdb-container>
65
</template>
xxxxxxxxxx
1
body {
2
background-color: rgba(0, 0, 0, 0.9);
3
background-image: url("https://images.pexels.com/photos/1860717/pexels-photo-1860717.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
4
background-size: cover;
5
background-repeat: no-repeat;
6
min-height: 100vh;
7
display: flex;
8
justify-content: center;
9
align-items: center;
10
}
11
12
.mask {
13
position: fixed;
14
top: 0;
15
left: 0;
16
width: 100vw;
17
height: 100vh;
18
opacity: 0.4;
19
}
20
.phone-header {
21
background-color: rgba(7, 9, 15, 1);
22
}
23
.app-frame {
24
background-color: rgba(7, 9, 15, 0.8);
25
border-bottom: 1px solid rgba(230, 147, 226, 0.4);
26
}
27
28
.panel {
29
background-color: rgba(7, 9, 15, 0.6);
30
border-bottom: 1px solid rgba(230, 147, 226, 0.4);
31
}
32
33
.mobile-view {
34
width: 375px;
35
background-color: rgba(7, 9, 15, 0.8);
36
border-top: 1px solid rgba(7, 9, 15, 0.8);
37
border-left: 1px solid rgba(7, 9, 15, 0.4);
38
}
39
40
.mobile-body {
41
height: 360px;
42
position: relative;
43
margin: 10px;
44
}
45
46
.title-container {
47
position: relative;
48
overflow: hidden;
49
color: rgba(230, 147, 226, 0.9);
50
}
51
.music-title {
52
animation-name: title;
53
animation-iteration-count: infinite;
54
animation-duration: 4s;
55
}
56
57
.pointer {
58
cursor: pointer;
59
}
60
@keyframes title {
61
0% {
62
transform: translate(-85%);
63
}
64
50% {
65
transform: translate(0);
66
}
67
100% {
68
transform: translate(85%);
69
}
70
}
xxxxxxxxxx
1
import {
2
mdbLineChart,
3
mdbContainer,
4
mdbCard,
5
mdbCardHeader,
6
mdbCardFooter,
7
mdbCardBody,
8
mdbIcon,
9
mdbRow,
10
mdbCol
11
} from "mdbvue";
12
import { clearInterval } from "timers";
13
export default {
14
components: {
15
mdbLineChart,
16
mdbContainer,
17
mdbCard,
18
mdbCardHeader,
19
mdbCardFooter,
20
mdbCardBody,
21
mdbIcon,
22
mdbRow,
23
mdbCol
24
},
25
data() {
26
return {
27
beat: null,
28
play: false,
29
chartData: {
30
labels: [],
31
datasets: [
32
{
33
label: "new users",
34
borderColor: "rgba(230, 147, 226, 0.9)",
35
pointRadius: 0,
36
borderWidth: 0.8,
37
data: []
38
}
39
]
40
},
41
chartOptions: {
42
legend: {
43
display: false
44
},
45
responsive: true,
46
maintainAspectRatio: false,
47
scales: {
48
display: false,
49
xAxes: [
50
{
51
gridLines: {
52
display: false
53
}
54
}
55
],
56
57
yAxes: [
58
{
59
gridLines: {
60
display: false
61
},
62
pointLabels: {
63
fontSize: 100
64
},
65
ticks: {
66
display: false
67
}
68
}
69
]
70
}
71
},
72
active: 1,
73
music: [
74
{
75
artist: "Dj Flam",
76
song: "Urban Bachata remix",
77
source:
78
"https://bachataurban.com/download/2/Stefflon%20Don%20-%2016%20Shots%20(%20DJ%20Flam%20-%20Urban%20Bachata%20remix%20).mp3"
79
},
80
{
81
artist: "Arctic Monkeys",
82
song: "Do I Wanna Know",
83
source:
84
"https://bachataurban.com/download/2/Arctic%20Monkeys%20-%20Do%20I%20Wanna%20Know%20(%20DJ%20Flam%20-%20Urban%20Bachata%20remix%20).mp3"
85
}
86
]
87
};
88
},
89
methods: {
90
randomize(arr) {
91
return arr.map((value, i) => {
92
if (i < 5 || i > arr.length - 5) {
93
return 3000 + Math.floor(Math.random() * 10);
94
} else if (
95
(i > 5 && i < 10) ||
96
(i < arr.length - 5 && i > arr.length - 10)
97
) {
98
return 3000 + Math.floor(Math.random() * 100);
99
} else {
100
return Math.floor(Math.random() * 7900);
101
}
102
});
103
},
104
changeData() {
105
let updatedData = Object.assign({}, this.chartData);
106
updatedData.datasets.forEach(dataset => {
107
dataset.data = this.randomize(dataset.data);
108
});
109
this.chartData = updatedData;
110
},
111
next() {
112
if (this.active + 1 < this.music.length) {
113
this.active++;
114
} else {
115
this.active = 0;
116
}
117
if (this.play) {
118
this.$refs.music.pause();
119
setTimeout(() => {
120
this.$refs.music.play();
121
}, 100);
122
}
123
this.changeData();
124
},
125
previous() {
126
if (this.active - 1 < 0) {
127
this.active = this.music.length - 1;
128
} else {
129
this.active--;
130
}
131
if (this.play) {
132
this.$refs.music.pause();
133
setTimeout(() => {
134
this.$refs.music.play();
135
}, 100);
136
}
137
this.changeData();
138
},
139
togglePlay() {
140
this.play = !this.play;
141
this.changeData();
142
if (this.play) {
143
this.$refs.music.play();
144
this.beat = setInterval(this.changeData, 1000);
145
} else {
146
this.$refs.music.pause();
147
window.clearInterval(this.beat);
148
}
149
},
150
setData() {
151
this.chartData.labels = new Array(70).fill("");
152
this.chartData.datasets.find(el => el).data = new Array(70).fill(0);
153
}
154
},
155
beforeMount() {
156
this.setData();
157
this.changeData();
158
}
159
};
Console errors: 0