-
Notifications
You must be signed in to change notification settings - Fork 5
/
DPUB-use-cases-x.html
79 lines (75 loc) · 1.74 KB
/
DPUB-use-cases-x.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Untitled</title>
<style>
table { border: 1pt solid black;
border-collapse: collapse; }
th {
text-align: left;
vertical-align: bottom;
border: 1pt solid #aaa;
padding: 2px;
}
td {
text-align: left;
vertical-align: top;
border: 1pt solid #aaa;
padding: 2px;
}
</style>
</head>
<body>
<table>
<tr>
<th>Feature</th> <th>Web Version</th> <th>Notes</th> <th></th>
</tr>
<tr>
<td>offline reading</td> <td>service workers</td> <td>not in Safari</td>
</tr>
<tr>
<td>pagination</td> <td>x</td> <td>Unimplemented on browsers, polyfills complex</td>
</tr>
<tr>
<td>same gesture to go from page to page as from file to file</td> <td>x</td> <td></td>
</tr>
<tr>
<td>user choice of font</td> <td>UA stylesheet</td> <td>x</td>
</tr>
<tr>
<td>user choice of font size</td> <td>UI</td> <td>x</td>
</tr>
<tr>
<td>night mode</td> <td>Alternate stylesheet</td> <td>No UI provided</td>
</tr>
<tr>
<td>easy access to table of contents</td> <td>x</td> <td></td>
</tr>
<tr>
<td>visual indication of how much you've read (page numbers/location/progress bar)</td> <td>x</td> <td></td>
</tr>
<tr>
<td>chrome can disappear</td> <td>PWAs offer some control over display mode</td> <td></td>
</tr>
<tr>
<td>library management</td> <td>x</td> <td></td>
</tr>
<tr>
<td>search across multiple files</td> <td>x</td> <td></td>
</tr>
<tr>
<td>bookmarks, highlighting, notes</td> <td>Web Annotations</td> <td>just reached CR</td>
</tr>
<tr>
<td>shopping</td> <td>x</td> <td></td>
</tr>
<tr>
<td>remembering where you are</td> <td>x</td> <td></td>
</tr>
<tr>
<td>running heads</td> <td>CSS-GCPM etc</td> <td>Unimplemented in browers</td>
</tr>
</table>
</body>
</html>