HTML
xxxxxxxxxx
1
<template>
2
<mdb-container class="white-text text-center d-flex justify-content-center">
3
<div class="mask"></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>My app</p>
19
</mdb-card-header>
20
<mdb-tab tabs justify class="m-0 app-frame">
21
<mdb-tab-item
22
icon="chart-line"
23
:active="pillsActive==0"
24
@click.native.prevent="pillsActive=0"
25
>Statistics</mdb-tab-item>
26
<mdb-tab-item
27
icon="bullseye"
28
:active="pillsActive==1"
29
@click.native.prevent="pillsActive=1"
30
>Target</mdb-tab-item>
31
</mdb-tab>
32
<mdb-card-body class="p-0 m-0 mobile-body scrollbar-dusty-grass thin">
33
<mdb-tab-content>
34
<mdb-tab-pane class="fade" key="show1" v-if="pillsActive==0">
35
<mdb-line-chart :data="chartData" :options="chartOptions" :width="600" :height="300"></mdb-line-chart>
36
<hr class="rule m-4" />
37
<mdb-bar-chart :data="barChartData" :options="chartOptions" :width="600" :height="300"></mdb-bar-chart>
38
</mdb-tab-pane>
39
<mdb-tab-pane class="fade" key="show2" v-if="pillsActive==1">
40
<mdb-container>
41
<h4>Target completed in</h4>
42
<mdb-simple-chart style="margin: 24px auto;" :value="88" color="rgb(150, 230, 161)">88%</mdb-simple-chart>
43
<h4>Increase of performance</h4>
44
<p>Compared to the last year</p>
45
<mdb-simple-chart style="margin: 24px auto;" :value="57" color="#d4fc79">57%</mdb-simple-chart>
46
<h4>Tasks left</h4>
47
<mdb-simple-chart style="margin: 24px auto;" :value="72" color="rgb(150, 230, 161)">23%</mdb-simple-chart>
48
</mdb-container>
49
</mdb-tab-pane>
50
</mdb-tab-content>
51
</mdb-card-body>
52
<mdb-card-footer class="app-frame">Company Name®</mdb-card-footer>
53
</mdb-card>
54
</mdb-container>
55
</template>
SCSS
xxxxxxxxxx
1
body {
2
background-color: rgba(0, 0, 0, 0.9);
3
background-image: url("https://images.pexels.com/photos/1227648/pexels-photo-1227648.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
background-color: rgba(0, 0, 0, 0.6);
19
}
20
.phone-header {
21
background-color: rgba(255, 255, 255, 0.5);
22
}
23
.app-frame {
24
background-color: rgba(255, 255, 255, 0.1);
25
}
26
.mobile-view {
27
width: 375px;
28
background-color: rgba(255, 255, 255, 0.1);
29
border-top: 1px solid rgba(255, 255, 255, 0.8);
30
border-left: 1px solid rgba(255, 255, 255, 0.4);
31
}
32
33
.mobile-body {
34
height: 460px;
35
position: relative;
36
overflow-y: scroll;
37
margin: 10px;
38
}
39
40
.scrollbar-dusty-grass::-webkit-scrollbar-track {
41
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
42
background-color: rgba(255, 255, 255, 0.1);
43
border-radius: 10px;
44
}
45
46
.scrollbar-dusty-grass::-webkit-scrollbar {
47
width: 12px;
48
background-color: rgba(255, 255, 255, 0.1);
49
}
50
51
.scrollbar-dusty-grass::-webkit-scrollbar-thumb {
52
border-radius: 10px;
53
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
54
background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%);
55
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
56
}
57
58
.thin::-webkit-scrollbar {
59
width: 6px;
60
}
61
62
.rule {
63
background-color: rgba(150, 230, 161, 0.7);
64
}
JS
xxxxxxxxxx
1
import {
2
mdbLineChart,
3
mdbSimpleChart,
4
mdbBarChart,
5
mdbContainer,
6
mdbCard,
7
mdbCardHeader,
8
mdbCardFooter,
9
mdbCardBody,
10
mdbIcon,
11
mdbRow,
12
mdbCol,
13
mdbTab,
14
mdbTabContent,
15
mdbTabPane,
16
mdbTabItem,
17
mdbCardTitle
18
} from "mdbvue";
19
export default {
20
name: "ChartPage",
21
components: {
22
mdbLineChart,
23
mdbSimpleChart,
24
mdbBarChart,
25
mdbContainer,
26
mdbCard,
27
mdbCardHeader,
28
mdbCardFooter,
29
mdbCardBody,
30
mdbIcon,
31
mdbRow,
32
mdbCol,
33
mdbTab,
34
mdbTabContent,
35
mdbTabPane,
36
mdbTabItem,
37
mdbCardTitle
38
},
39
data() {
40
return {
41
target: 80,
42
pillsActive: 0,
43
verticalWithin: 0,
44
chartData: {
45
labels: [
46
"I",
47
"II",
48
"III",
49
"IV",
50
"V",
51
"VI",
52
"VII",
53
"VIII",
54
"IX",
55
"X",
56
"XI",
57
"XII"
58
],
59
datasets: [
60
{
61
label: "new users",
62
backgroundColor: "rgba(150, 230, 161, 0.1",
63
borderColor: "rgba(150, 230, 161, 0.9",
64
borderWidth: 0.8,
65
data: [28, 48, 40, 19, 86, 27, 90, 70, 60, 50, 67, 72]
66
}
67
]
68
},
69
barChartData: {
70
labels: ["<18", "18-25", "26 - 34", " > 35"],
71
datasets: [
72
{
73
label: "% users in the each age group",
74
backgroundColor: [
75
"rgba(150, 230, 161, 0.1",
76
"rgba(150, 230, 161, 0.5",
77
"rgba(150, 230, 161, 0.2",
78
"rgba(150, 230, 161, 0.3"
79
],
80
borderColor: "rgba(150, 230, 161, 0.8",
81
borderWidth: 0.8,
82
data: [12, 56, 18, 24]
83
}
84
]
85
},
86
chartOptions: {
87
responsive: true,
88
maintainAspectRatio: false,
89
scales: {
90
xAxes: [
91
{
92
gridLines: {
93
display: true,
94
color: "rgba(255, 255, 255, 0.2)"
95
}
96
}
97
]
98
}
99
}
100
};
101
}
102
};
Console errors: 0