feat: 全屏模版

This commit is contained in:
li
2025-11-07 10:53:34 +08:00
committed by puke
parent fed92f111d
commit 4e7fa55a99
2 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, height=1920">
<title>全屏图片 - 1080x1920</title>
<!-- Google Fonts - 中文字体 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700;900&family=Noto+Serif+SC:wght@400;700;900&family=Liu+Jian+Mao+Cao&family=Ma+Shan+Zheng&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1080px; height: 1920px; overflow: hidden; }
body {
font-family: 'Noto Sans SC', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
color: #fff;
position: relative;
background: transparent; /* 移除黑色背景 */
}
/* 背景使用图片并做模糊处理,完全覆盖整个页面 */
.bg {
position: relative;
width: 100%;
height: 100%;
background-image: url("{{image}}");
background-size: cover;
background-position: center;
z-index: 0;
}
.title {
position: absolute;
top: 300px;
width: 100%;
text-align: center;
font-size: 92px;
font-weight: 400;
line-height: 1.2;
text-shadow: 0 6px 22px rgba(0,0,0,0.6);
/* 使用 Ma Shan Zheng 毛笔字体 */
font-family: 'Ma Shan Zheng', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', cursive;
-webkit-text-stroke: 1px #000;
letter-spacing: 4px;
}
/* 底部字幕覆盖在图片底部 */
.text {
position: absolute;
bottom: 160px;
width: 100%; /* 稍微调整以适应全宽图片 */
padding: 0 60px;
text-align: center;
font-size: 54px;
font-weight: 900;
line-height: 1.2;
color: #ffffff;
font-family: 'ArtisticFont', 'Noto Serif SC', 'Noto Sans SC', 'PingFang SC', serif;
-webkit-text-stroke: 1px #000;
letter-spacing: 1px;
text-shadow: 0 0 0 #000,
-3px -3px 0 #000,
3px -3px 0 #000,
-3px 3px 0 #000,
3px 3px 0 #000,
0 10px 24px rgba(0,0,0,0.6);
}
@media (max-width: 1080px) {
.title { font-size: 80px; }
.text { font-size: 48px; }
}
</style>
</head>
<body>
<div class="bg">
<div class="title">{{title}}</div>
<div class="text">{{text}}</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920, height=1080">
<title>全屏图片 - 1920x1080</title>
<!-- Google Fonts - 中文字体 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700;900&family=Noto+Serif+SC:wght@400;700;900&family=Liu+Jian+Mao+Cao&family=Ma+Shan+Zheng&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 1920px; height: 1080px; overflow: hidden; }
body {
font-family: 'Noto Sans SC', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
color: #fff;
position: relative;
background: transparent; /* 移除黑色背景 */
}
/* 背景使用图片并做模糊处理,完全覆盖整个页面 */
.bg {
position: relative;
width: 100%;
height: 100%;
background-image: url("{{image}}");
background-size: cover;
background-position: center;
z-index: 0;
}
.title {
position: absolute;
top: 160px;
width: 100%;
text-align: center;
font-size: 92px;
font-weight: 400;
line-height: 1.2;
text-shadow: 0 6px 22px rgba(0,0,0,0.6);
/* 使用 Ma Shan Zheng 毛笔字体 */
font-family: 'Ma Shan Zheng', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', cursive;
-webkit-text-stroke: 1px #000;
letter-spacing: 4px;
}
/* 底部字幕覆盖在图片底部 */
.text {
position: absolute;
bottom: 60px;
width: 100%; /* 稍微调整以适应全宽图片 */
padding: 0 60px;
text-align: center;
font-size: 54px;
font-weight: 900;
line-height: 1.2;
color: #ffffff;
font-family: 'ArtisticFont', 'Noto Serif SC', 'Noto Sans SC', 'PingFang SC', serif;
-webkit-text-stroke: 1px #000;
letter-spacing: 1px;
text-shadow: 0 0 0 #000,
-3px -3px 0 #000,
3px -3px 0 #000,
-3px 3px 0 #000,
3px 3px 0 #000,
0 10px 24px rgba(0,0,0,0.6);
}
@media (max-width: 1080px) {
.title { font-size: 80px; }
.text { font-size: 48px; }
}
</style>
</head>
<body>
<div class="bg">
<div class="title">{{title}}</div>
<div class="text">{{text}}</div>
</div>
</body>
</html>