forked from ffgenius/autoLarryPages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Auto Plugins</title>
<link rel="shortcut icon" href="./dependens/ico.svg" />
<link rel="stylesheet" href="./dependens/index.css" />
<link rel="stylesheet" href="./autotip.css/index.css">
<script src="https://cdn.jsdelivr.net/npm/autofit.js@3.1.0/autofit.min.js"></script>
<style>
*[tip]::before {
color: #000;
background-color: #fff;
}
*[tip-position="top"]::after {
border-color: #fff transparent transparent transparent;
}
</style>
</head>
<body>
<div class="main">
<div class="logo">
<a href="https://github.com/LarryZhu-dev/" target="_blank">
<img src="./dependens/ico.svg" alt="" />
</a>
</div>
<div class="productionList">
<a href="/autofit.js" tip="最易用的自适应插件" tip-position="top">autofit.js</a>
<a href="/autolog.js" tip="命令式、小而美的弹窗组件" tip-position="top">autolog.js</a>
<a href="/autohue.js" tip="一个使你的图片和背景融为一体的工具" tip-position="top">autohue.js</a>
<a href="/autouno" tip="直觉的 UnoCSS 预设方案" tip-position="top">autouno</a>
<a href="/autotip.css" tip="你看到的小提示的纯CSS实现方案" tip-position="top">autotip.css</a>
</div>
</div>
</body>
</html>
<script>
autofit.init({
limit: 0.2,
});
</script>