forked from ZhChen7/LakeDivision-flea-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
55 lines (44 loc) · 1.02 KB
/
app.wxss
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
@import "/icon/icon.wxss";
@import "colorui/main.wxss";
@import "colorui/icon.wxss";
/* @import "app.css"; 你的项目css */
page{
background: #fff;
}
::-webkit-scrollbar {
/* display: none; */
width: 0;
height: 0;
color: transparent
}
image {
width: 320px;
height: 170px;
display: inline-block;
overflow: hidden;
}
/* css 滤镜 控制黑白底色gif的 */
.gif-black {
mix-blend-mode: screen;
}
.gif-white {
mix-blend-mode: multiply;
}
/*波浪线*/
.flow-wave {
background: radial-gradient(circle at 10px -7px, transparent 8px, #ddd 8px, #ddd 9px, transparent 9px) repeat-x,
radial-gradient(circle at 10px 27px, transparent 8px, #ddd 8px, #ddd 9px, transparent 9px) repeat-x;
background-size: 20px 20px;
background-position: -10px calc(100% + 16px), 0 calc(100% - 4px);
}
.flow-wave {
animation: waveFlow 1s infinite linear;
}
@keyframes waveFlow {
from {
background-position-x: -10px, 0;
}
to {
background-position-x: -30px, -20px;
}
}