-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.86 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width"
/>
<link rel="stylesheet" type="text/css" href="../css/spaces.css" />
<link rel="stylesheet" type="text/css" href="../css/slides.css" />
<link rel="stylesheet" type="text/css" href="../css/nord-dark.css" />
<link rel="stylesheet" type="text/css" href="../css/nord-light.css" />
<link rel="stylesheet" type="text/css" href="../css/font-nord.css" />
<link rel="stylesheet" type="text/css" href="../css/bg-nord.css" />
<link rel="stylesheet" type="text/css" href="../css/style.css" />
<script>
function create() {
return remark.create({
sourceUrl: "README.md",
ratio: "4:3", // 窗口比例
// 可选:arta, ascetic, dark, default, far, github, googlecode, idea,
// ir-black, magula, monokai, rainbow, solarized-dark, solarized-light,
// sunburst, tomorrow, tomorrow-night-blue, tomorrow-night-bright,
// tomorrow-night, tomorrow-night-eighties, vs, zenburn.
highlightStyle: "tomorrow-night-eighties",
highlightLines: true,
countIncrementalSlides: false, // 增量内容是否算一页
// slideNumberFormat: "", // 若将此参数设置为 "",将不显示页码
navigation: {
scroll: false, // 是否允许使用鼠标滚轮翻页
touch: true, // (如果是触摸屏)是否允许点击屏幕左边或右边前后翻页
click: false, // 是否允许鼠标点击屏幕左边或右边前后翻页
},
});
}
</script>
</head>
<body onload="slideshow = create()">
<script src="../js/remark.min.js"></script>
<!-- <script src="js/quasar.umd.min.js"></script> -->
</body>
</html>