App-Android(使用App+htnl5框架,解决消息推送兼容SignalR问题)
loulijun2021
2022-09-29 3ff55c0f9af7d708a4ed6b3b7adea207b46e3cea
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
    -webkit-user-select: none;
    -ms-touch-select: none;
}
html {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial;
    font-size:16px;
    color: #6c6c6c;
    background-color: #FFF;
    text-align: center;
    -webkit-touch-callout:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-text-size-adjust:none;
}
.heading {
    margin:0 1em;
    text-align:left;
}
.des {
    padding: 0 1em;
    text-align:left;
    text-indent: 2em;
    word-break: break-all;
}
.logo {
    width: 100%;
    text-align: center;
}
.button {
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
    display: block;
    text-align: center;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color: #FFF;
    background-color: #FFCC33;
    border: 1px solid #ECB100;
    padding: .5em 0em;
    margin: .5em .7em;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.button:active {
    outline: 0;
      -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.button-waring {
    color: #666;
    background-color: #ebebeb;
    border-color: #e0e0e0;
}
.button-select {
    font-size: 14px;
    background-color: #CCCCCC;
    border: 0;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
.dlist {
    padding: 0px;
    margin: 1em;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.ditem {
    overflow: hidden;
    list-style-type: none;
    font-size: 1em;
    padding: 1em;
    border-bottom: inset 1px #ebebeb;
    vertical-align: middle;
}
.ditem:active {
    background: #f4f4f4;
}
.ditem:last-child {
    border-bottom: inset 0px #ebebeb;
}
.ditem-empty {
    overflow: hidden;
    list-style-type: none;
    font-size: 1em;
    padding: 1em;
    vertical-align: middle;
}
#outpos {
    height: 100px;
    width: 100%;
}
#output {
    height: 64px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    color: #f00;
    background: #FFF;
    font-size: 12px;
    text-align: left;
    line-height: 16px;
    word-break: break-all;
    z-index: 6666;
    padding: 8px 16px;
    overflow-x: hidden;
    overflow-y: scroll;
    border-top: 2px solid #AAA;
    -webkit-overflow-scrolling: touch;
}