1 Star 0 Fork 0

千山我独行丶/LightBlog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1006 Bytes
一键复制 编辑 原始数据 按行查看 历史
千山我独行丶 提交于 2021-10-25 01:07 . change
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>逆光</title>
<style>
* {
padding: 0;
margin: 0;
}
html,
body,
#app {
width: 100%;
height: 100%;
}
/*修改naive ui的form组件中每一项上下的间距*/
.n-form-item-feedback-wrapper {
min-height: 0.5rem !important;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
/*添加自执行函数,为rem设置自适应的根DOM字体大小,默认1rem = 20px */
(function () {
change();
function change() {
document.documentElement.style.fontSize = document.documentElement.clientWidth * 20 / 1920 + "px";
}
/*监听窗口大小的改变*/
window.addEventListener("risize", change, false);
})()
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/mlt131220/LightBlog.git
git@gitee.com:mlt131220/LightBlog.git
mlt131220
LightBlog
LightBlog
main

搜索帮助