@careevolution/mydatahelps-js 2.0.1 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -201
- package/MyDataHelps.css +147 -147
- package/MyDataHelps.js +690 -631
- package/MyDataHelps.min.js +2 -1
- package/MyDataHelps.min.js.map +1 -1
- package/README.md +10 -10
- package/package.json +26 -24
package/MyDataHelps.css
CHANGED
|
@@ -1,147 +1,147 @@
|
|
|
1
|
-
body.no-scroll
|
|
2
|
-
{
|
|
3
|
-
overflow: hidden !important;
|
|
4
|
-
position: fixed !important;
|
|
5
|
-
height: 100%;
|
|
6
|
-
width: 100%;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
#mydatahelps-survey-modal
|
|
10
|
-
{
|
|
11
|
-
position: fixed;
|
|
12
|
-
left: 0;
|
|
13
|
-
top: 0;
|
|
14
|
-
bottom: 0;
|
|
15
|
-
right: 0;
|
|
16
|
-
background: rgba(0,0,0,0.5);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
#mydatahelps-survey-modal .mydatahelps-survey
|
|
20
|
-
{
|
|
21
|
-
margin: 0px auto;
|
|
22
|
-
z-index: 5002;
|
|
23
|
-
position: relative;
|
|
24
|
-
max-width: 768px;
|
|
25
|
-
height: calc(100% - 32px);
|
|
26
|
-
box-sizing: border-box;
|
|
27
|
-
margin-top: 16px;
|
|
28
|
-
margin-bottom: 16px;
|
|
29
|
-
border-radius: 5px;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
background: #FFF;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
#mydatahelps-survey-modal .mydatahelps-survey iframe
|
|
35
|
-
{
|
|
36
|
-
position: absolute;
|
|
37
|
-
left: 0;
|
|
38
|
-
top: 0;
|
|
39
|
-
right: 0;
|
|
40
|
-
bottom: 0;
|
|
41
|
-
width: 100%;
|
|
42
|
-
height: 100%;
|
|
43
|
-
border: none;
|
|
44
|
-
opacity: 0;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
#mydatahelps-survey-modal.loaded .mydatahelps-survey iframe
|
|
48
|
-
{
|
|
49
|
-
opacity: 1;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@media (max-width: 768px)
|
|
53
|
-
{
|
|
54
|
-
#mydatahelps-survey-modal .mydatahelps-survey
|
|
55
|
-
{
|
|
56
|
-
height: 100%;
|
|
57
|
-
margin-top: 0;
|
|
58
|
-
margin-bottom: 0;
|
|
59
|
-
border-radius: 0;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
#mydatahelps-survey-modal .mydatahelps-survey .loader
|
|
64
|
-
{
|
|
65
|
-
font-size: 5px;
|
|
66
|
-
text-indent: -9999em;
|
|
67
|
-
width: 11em;
|
|
68
|
-
height: 11em;
|
|
69
|
-
position: absolute;
|
|
70
|
-
top: calc(50% - 5.5em);
|
|
71
|
-
left: calc(50% - 5.5em);
|
|
72
|
-
border-radius: 50%;
|
|
73
|
-
background: #ffffff;
|
|
74
|
-
background: -moz-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
75
|
-
background: -webkit-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
76
|
-
background: -o-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
77
|
-
background: -ms-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
78
|
-
background: linear-gradient(to right, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
79
|
-
-webkit-animation: load3 1.4s infinite linear;
|
|
80
|
-
animation: load3 1.4s infinite linear;
|
|
81
|
-
-webkit-transform: translateZ(0);
|
|
82
|
-
-ms-transform: translateZ(0);
|
|
83
|
-
transform: translateZ(0);
|
|
84
|
-
z-index: 1;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
#mydatahelps-survey-modal .mydatahelps-survey .loader:before
|
|
88
|
-
{
|
|
89
|
-
width: 50%;
|
|
90
|
-
height: 50%;
|
|
91
|
-
background: #bbb;
|
|
92
|
-
border-radius: 100% 0 0 0;
|
|
93
|
-
position: absolute;
|
|
94
|
-
top: 0;
|
|
95
|
-
left: 0;
|
|
96
|
-
content: '';
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
#mydatahelps-survey-modal .mydatahelps-survey .loader:after
|
|
100
|
-
{
|
|
101
|
-
background: #fff;
|
|
102
|
-
width: 75%;
|
|
103
|
-
height: 75%;
|
|
104
|
-
border-radius: 50%;
|
|
105
|
-
content: '';
|
|
106
|
-
margin: auto;
|
|
107
|
-
position: absolute;
|
|
108
|
-
top: 0;
|
|
109
|
-
left: 0;
|
|
110
|
-
bottom: 0;
|
|
111
|
-
right: 0;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
#mydatahelps-survey-modal.loaded .mydatahelps-survey .loader
|
|
115
|
-
{
|
|
116
|
-
display: none;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
@-webkit-keyframes load3
|
|
120
|
-
{
|
|
121
|
-
0%
|
|
122
|
-
{
|
|
123
|
-
-webkit-transform: rotate(0deg);
|
|
124
|
-
transform: rotate(0deg);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
100%
|
|
128
|
-
{
|
|
129
|
-
-webkit-transform: rotate(360deg);
|
|
130
|
-
transform: rotate(360deg);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
@keyframes load3
|
|
135
|
-
{
|
|
136
|
-
0%
|
|
137
|
-
{
|
|
138
|
-
-webkit-transform: rotate(0deg);
|
|
139
|
-
transform: rotate(0deg);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
100%
|
|
143
|
-
{
|
|
144
|
-
-webkit-transform: rotate(360deg);
|
|
145
|
-
transform: rotate(360deg);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
1
|
+
body.no-scroll
|
|
2
|
+
{
|
|
3
|
+
overflow: hidden !important;
|
|
4
|
+
position: fixed !important;
|
|
5
|
+
height: 100%;
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#mydatahelps-survey-modal
|
|
10
|
+
{
|
|
11
|
+
position: fixed;
|
|
12
|
+
left: 0;
|
|
13
|
+
top: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
right: 0;
|
|
16
|
+
background: rgba(0,0,0,0.5);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#mydatahelps-survey-modal .mydatahelps-survey
|
|
20
|
+
{
|
|
21
|
+
margin: 0px auto;
|
|
22
|
+
z-index: 5002;
|
|
23
|
+
position: relative;
|
|
24
|
+
max-width: 768px;
|
|
25
|
+
height: calc(100% - 32px);
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
margin-top: 16px;
|
|
28
|
+
margin-bottom: 16px;
|
|
29
|
+
border-radius: 5px;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
background: #FFF;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
#mydatahelps-survey-modal .mydatahelps-survey iframe
|
|
35
|
+
{
|
|
36
|
+
position: absolute;
|
|
37
|
+
left: 0;
|
|
38
|
+
top: 0;
|
|
39
|
+
right: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 100%;
|
|
43
|
+
border: none;
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#mydatahelps-survey-modal.loaded .mydatahelps-survey iframe
|
|
48
|
+
{
|
|
49
|
+
opacity: 1;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media (max-width: 768px)
|
|
53
|
+
{
|
|
54
|
+
#mydatahelps-survey-modal .mydatahelps-survey
|
|
55
|
+
{
|
|
56
|
+
height: 100%;
|
|
57
|
+
margin-top: 0;
|
|
58
|
+
margin-bottom: 0;
|
|
59
|
+
border-radius: 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
#mydatahelps-survey-modal .mydatahelps-survey .loader
|
|
64
|
+
{
|
|
65
|
+
font-size: 5px;
|
|
66
|
+
text-indent: -9999em;
|
|
67
|
+
width: 11em;
|
|
68
|
+
height: 11em;
|
|
69
|
+
position: absolute;
|
|
70
|
+
top: calc(50% - 5.5em);
|
|
71
|
+
left: calc(50% - 5.5em);
|
|
72
|
+
border-radius: 50%;
|
|
73
|
+
background: #ffffff;
|
|
74
|
+
background: -moz-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
75
|
+
background: -webkit-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
76
|
+
background: -o-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
77
|
+
background: -ms-linear-gradient(left, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
78
|
+
background: linear-gradient(to right, #bbb 10%, rgba(255, 255, 255, 0) 42%);
|
|
79
|
+
-webkit-animation: load3 1.4s infinite linear;
|
|
80
|
+
animation: load3 1.4s infinite linear;
|
|
81
|
+
-webkit-transform: translateZ(0);
|
|
82
|
+
-ms-transform: translateZ(0);
|
|
83
|
+
transform: translateZ(0);
|
|
84
|
+
z-index: 1;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
#mydatahelps-survey-modal .mydatahelps-survey .loader:before
|
|
88
|
+
{
|
|
89
|
+
width: 50%;
|
|
90
|
+
height: 50%;
|
|
91
|
+
background: #bbb;
|
|
92
|
+
border-radius: 100% 0 0 0;
|
|
93
|
+
position: absolute;
|
|
94
|
+
top: 0;
|
|
95
|
+
left: 0;
|
|
96
|
+
content: '';
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
#mydatahelps-survey-modal .mydatahelps-survey .loader:after
|
|
100
|
+
{
|
|
101
|
+
background: #fff;
|
|
102
|
+
width: 75%;
|
|
103
|
+
height: 75%;
|
|
104
|
+
border-radius: 50%;
|
|
105
|
+
content: '';
|
|
106
|
+
margin: auto;
|
|
107
|
+
position: absolute;
|
|
108
|
+
top: 0;
|
|
109
|
+
left: 0;
|
|
110
|
+
bottom: 0;
|
|
111
|
+
right: 0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
#mydatahelps-survey-modal.loaded .mydatahelps-survey .loader
|
|
115
|
+
{
|
|
116
|
+
display: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
@-webkit-keyframes load3
|
|
120
|
+
{
|
|
121
|
+
0%
|
|
122
|
+
{
|
|
123
|
+
-webkit-transform: rotate(0deg);
|
|
124
|
+
transform: rotate(0deg);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
100%
|
|
128
|
+
{
|
|
129
|
+
-webkit-transform: rotate(360deg);
|
|
130
|
+
transform: rotate(360deg);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
@keyframes load3
|
|
135
|
+
{
|
|
136
|
+
0%
|
|
137
|
+
{
|
|
138
|
+
-webkit-transform: rotate(0deg);
|
|
139
|
+
transform: rotate(0deg);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
100%
|
|
143
|
+
{
|
|
144
|
+
-webkit-transform: rotate(360deg);
|
|
145
|
+
transform: rotate(360deg);
|
|
146
|
+
}
|
|
147
|
+
}
|