-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
54 lines (47 loc) · 1.29 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Docsify-Pagination Example</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css" />
<!-- <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css"> -->
<!-- <style>
body {
color: yellow;
font-size: 20px;
background: #999;
}
body .docsify-pagination-container {
border-width: 5px;
border-color: red;
}
body .pagination-item-label svg {
height: 1.5em;
stroke-linecap: square;
stroke-linejoin: square;
stroke-width: 3px;
}
</style> -->
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
loadSidebar: true,
subMaxLevel: 4,
pagination: {
previousText: '上一章节',
nextText: '下一章节',
crossChapter: true,
crossChapterText: true,
},
}
</script>
<!-- docsify -->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- plugins -->
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="../../dist/docsify-pagination.js"></script>
</body>
</html>