uniScroll_wev8.css
590 Bytes
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
html {
-ms-touch-action: none;
}
body {
overflow: hidden;
}
#scroll_wrapper {
position:absolute;
z-index:1;
top:0px;
bottom:0px;
left:0;
width:100%;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling:touch;
background:transparent;
background-color: rgb(240, 240, 240);
}
#scroll_scroller {
width:100%;
}
#scroll_footer {
position:absolute; z-index:2;
bottom:0; left:0;
width:100%;
background-color: #fafafa;
display: none;
}
#pullDown {
display: none;
}
#right_view{
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling:touch;
}