|
|
@@ -3,15 +3,19 @@
|
|
3
|
3
|
* 在实际项目开发时,建议为App单独写一个css文件,从而实现项目的自定义皮肤功能;
|
|
4
|
4
|
*
|
|
5
|
5
|
* */
|
|
6
|
|
-.mui-plus header.mui-bar{
|
|
|
6
|
+
|
|
|
7
|
+.mui-plus header.mui-bar {
|
|
7
|
8
|
display: none;
|
|
8
|
9
|
}
|
|
9
|
|
-.mui-plus .mui-bar-nav~.mui-content{
|
|
|
10
|
+
|
|
|
11
|
+.mui-plus .mui-bar-nav~.mui-content {
|
|
10
|
12
|
padding: 0;
|
|
11
|
13
|
}
|
|
12
|
14
|
|
|
|
15
|
+
|
|
13
|
16
|
/*hm开头的表示仅为 Hello MUI示例定义*/
|
|
14
|
|
-.hm-description{
|
|
|
17
|
+
|
|
|
18
|
+.hm-description {
|
|
15
|
19
|
margin: .5em 0;
|
|
16
|
20
|
}
|
|
17
|
21
|
|
|
|
@@ -19,3 +23,186 @@
|
|
19
|
23
|
font-size: 14px;
|
|
20
|
24
|
color: #8f8f94;
|
|
21
|
25
|
}
|
|
|
26
|
+
|
|
|
27
|
+.mui-segmented-control.mui-segmented-control-inverted~.mui-slider-progress-bar {
|
|
|
28
|
+ background-color: #57cebf!important;
|
|
|
29
|
+}
|
|
|
30
|
+
|
|
|
31
|
+.mui-segmented-control.mui-segmented-control-inverted~.mui-slider-progress-bar {
|
|
|
32
|
+ background-color: #57cebf!important;
|
|
|
33
|
+}
|
|
|
34
|
+/*图片预览*/
|
|
|
35
|
+.mui-preview-image.mui-fullscreen {
|
|
|
36
|
+ position: fixed;
|
|
|
37
|
+ z-index: 20;
|
|
|
38
|
+ background-color: #000;
|
|
|
39
|
+}
|
|
|
40
|
+
|
|
|
41
|
+.mui-preview-header,
|
|
|
42
|
+.mui-preview-footer {
|
|
|
43
|
+ position: absolute;
|
|
|
44
|
+ width: 100%;
|
|
|
45
|
+ left: 0;
|
|
|
46
|
+ z-index: 10;
|
|
|
47
|
+}
|
|
|
48
|
+
|
|
|
49
|
+.mui-preview-header {
|
|
|
50
|
+ height: 44px;
|
|
|
51
|
+ top: 0;
|
|
|
52
|
+}
|
|
|
53
|
+
|
|
|
54
|
+.mui-preview-footer {
|
|
|
55
|
+ height: 50px;
|
|
|
56
|
+ bottom: 0px;
|
|
|
57
|
+}
|
|
|
58
|
+
|
|
|
59
|
+.mui-preview-header .mui-preview-indicator {
|
|
|
60
|
+ display: block;
|
|
|
61
|
+ line-height: 25px;
|
|
|
62
|
+ color: #fff;
|
|
|
63
|
+ text-align: center;
|
|
|
64
|
+ margin: 15px auto 4;
|
|
|
65
|
+ width: 70px;
|
|
|
66
|
+ background-color: rgba(0, 0, 0, 0.4);
|
|
|
67
|
+ border-radius: 12px;
|
|
|
68
|
+ font-size: 16px;
|
|
|
69
|
+}
|
|
|
70
|
+
|
|
|
71
|
+.mui-preview-image {
|
|
|
72
|
+ display: none;
|
|
|
73
|
+ -webkit-animation-duration: 0.5s;
|
|
|
74
|
+ animation-duration: 0.5s;
|
|
|
75
|
+ -webkit-animation-fill-mode: both;
|
|
|
76
|
+ animation-fill-mode: both;
|
|
|
77
|
+}
|
|
|
78
|
+
|
|
|
79
|
+.mui-preview-image.mui-preview-in {
|
|
|
80
|
+ -webkit-animation-name: fadeIn;
|
|
|
81
|
+ animation-name: fadeIn;
|
|
|
82
|
+}
|
|
|
83
|
+
|
|
|
84
|
+.mui-preview-image.mui-preview-out {
|
|
|
85
|
+ background: none;
|
|
|
86
|
+ -webkit-animation-name: fadeOut;
|
|
|
87
|
+ animation-name: fadeOut;
|
|
|
88
|
+}
|
|
|
89
|
+
|
|
|
90
|
+.mui-preview-image.mui-preview-out .mui-preview-header,
|
|
|
91
|
+.mui-preview-image.mui-preview-out .mui-preview-footer {
|
|
|
92
|
+ display: none;
|
|
|
93
|
+}
|
|
|
94
|
+
|
|
|
95
|
+.mui-zoom-scroller {
|
|
|
96
|
+ position: absolute;
|
|
|
97
|
+ display: -webkit-box;
|
|
|
98
|
+ display: -webkit-flex;
|
|
|
99
|
+ display: flex;
|
|
|
100
|
+ -webkit-box-align: center;
|
|
|
101
|
+ -webkit-align-items: center;
|
|
|
102
|
+ align-items: center;
|
|
|
103
|
+ -webkit-box-pack: center;
|
|
|
104
|
+ -webkit-justify-content: center;
|
|
|
105
|
+ justify-content: center;
|
|
|
106
|
+ left: 0;
|
|
|
107
|
+ right: 0;
|
|
|
108
|
+ bottom: 0;
|
|
|
109
|
+ top: 0;
|
|
|
110
|
+ width: 100%;
|
|
|
111
|
+ height: 100%;
|
|
|
112
|
+ margin: 0;
|
|
|
113
|
+ -webkit-backface-visibility: hidden;
|
|
|
114
|
+}
|
|
|
115
|
+
|
|
|
116
|
+.mui-zoom {
|
|
|
117
|
+ -webkit-transform-style: preserve-3d;
|
|
|
118
|
+ transform-style: preserve-3d;
|
|
|
119
|
+}
|
|
|
120
|
+
|
|
|
121
|
+.mui-slider .mui-slider-group .mui-slider-item img {
|
|
|
122
|
+ width: auto;
|
|
|
123
|
+ height: auto;
|
|
|
124
|
+ max-width: 100%;
|
|
|
125
|
+ max-height: 100%;
|
|
|
126
|
+}
|
|
|
127
|
+
|
|
|
128
|
+.mui-android-4-1 .mui-slider .mui-slider-group .mui-slider-item img {
|
|
|
129
|
+ width: 100%;
|
|
|
130
|
+}
|
|
|
131
|
+
|
|
|
132
|
+.mui-android-4-1 .mui-slider.mui-preview-image .mui-slider-group .mui-slider-item {
|
|
|
133
|
+ display: inline-table;
|
|
|
134
|
+}
|
|
|
135
|
+
|
|
|
136
|
+.mui-android-4-1 .mui-slider.mui-preview-image .mui-zoom-scroller img {
|
|
|
137
|
+ display: table-cell;
|
|
|
138
|
+ vertical-align: middle;
|
|
|
139
|
+}
|
|
|
140
|
+
|
|
|
141
|
+.mui-preview-loading {
|
|
|
142
|
+ position: absolute;
|
|
|
143
|
+ width: 100%;
|
|
|
144
|
+ height: 100%;
|
|
|
145
|
+ top: 0;
|
|
|
146
|
+ left: 0;
|
|
|
147
|
+ display: none;
|
|
|
148
|
+}
|
|
|
149
|
+
|
|
|
150
|
+.mui-preview-loading.mui-active {
|
|
|
151
|
+ display: block;
|
|
|
152
|
+}
|
|
|
153
|
+
|
|
|
154
|
+.mui-preview-loading .mui-spinner-white {
|
|
|
155
|
+ position: absolute;
|
|
|
156
|
+ top: 50%;
|
|
|
157
|
+ left: 50%;
|
|
|
158
|
+ margin-left: -25px;
|
|
|
159
|
+ margin-top: -25px;
|
|
|
160
|
+ height: 50px;
|
|
|
161
|
+ width: 50px;
|
|
|
162
|
+}
|
|
|
163
|
+
|
|
|
164
|
+.mui-preview-image img.mui-transitioning {
|
|
|
165
|
+ -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
|
|
|
166
|
+ transition: transform 0.5s ease, opacity 0.5s ease;
|
|
|
167
|
+}
|
|
|
168
|
+
|
|
|
169
|
+@-webkit-keyframes fadeIn {
|
|
|
170
|
+ 0% {
|
|
|
171
|
+ opacity: 0;
|
|
|
172
|
+ }
|
|
|
173
|
+ 100% {
|
|
|
174
|
+ opacity: 1;
|
|
|
175
|
+ }
|
|
|
176
|
+}
|
|
|
177
|
+
|
|
|
178
|
+@keyframes fadeIn {
|
|
|
179
|
+ 0% {
|
|
|
180
|
+ opacity: 0;
|
|
|
181
|
+ }
|
|
|
182
|
+ 100% {
|
|
|
183
|
+ opacity: 1;
|
|
|
184
|
+ }
|
|
|
185
|
+}
|
|
|
186
|
+
|
|
|
187
|
+@-webkit-keyframes fadeOut {
|
|
|
188
|
+ 0% {
|
|
|
189
|
+ opacity: 1;
|
|
|
190
|
+ }
|
|
|
191
|
+ 100% {
|
|
|
192
|
+ opacity: 0;
|
|
|
193
|
+ }
|
|
|
194
|
+}
|
|
|
195
|
+
|
|
|
196
|
+@keyframes fadeOut {
|
|
|
197
|
+ 0% {
|
|
|
198
|
+ opacity: 1;
|
|
|
199
|
+ }
|
|
|
200
|
+ 100% {
|
|
|
201
|
+ opacity: 0;
|
|
|
202
|
+ }
|
|
|
203
|
+}
|
|
|
204
|
+
|
|
|
205
|
+p img {
|
|
|
206
|
+ max-width: 100%;
|
|
|
207
|
+ height: auto;
|
|
|
208
|
+}
|