forked from liulangnan/aui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaui-slider-up.css
executable file
·73 lines (73 loc) · 1.39 KB
/
aui-slider-up.css
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* =========================================================================
* APIClud - AUI UI 框架 流浪男 QQ:343757327 http://www.auicss.com
* 全屏上下滑动组件
* Verson 0.0.1
* =========================================================================
*/
.aui-slider-nav {
position: relative;
background: #000;
}
.aui-slider-nav ul {
position: relative;
}
.aui-slider-nav ul,
.aui-slider-nav li {
list-style: none;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
background: #000000;
color: #ffffff;
}
.aui-slider-nav li {
position: absolute;
-webkit-backface-visibility: hidden;
}
.aui-slider-nav li img {
width: 100%;
height: 100%;
}
.aui-up-slide {
position: absolute;
bottom: 10px;
left: 50%;
width: 20px;
height: 20px;
z-index: 999999999;
margin-left: -10px;
color: #ffffff;
text-align: center;
font-weight: 700;
}
.aui-up-slide .aui-iconfont {
font-size: 28px;
}
.aui-slider-close {
background: rgba(102,102,102,0.7);
top: 30px;
right: 10px;
padding: 5px 10px;
color: #ffffff;
position: fixed;
z-index: 999999;
border-radius: 30px;
font-size: 12px;
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation: zoomIn 1s;
animation: zoomIn 1s;
}