image_full.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="template:media-width" content="1024">
  6. <meta name="template:media-height" content="1024">
  7. <meta name="viewport" content="width=1920, height=1080">
  8. <title>全屏图片 - 1920x1080</title>
  9. <!-- Google Fonts - 中文字体 -->
  10. <link rel="preconnect" href="https://fonts.googleapis.com">
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12. <link
  13. 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"
  14. rel="stylesheet">
  15. <style>
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: border-box;
  20. }
  21. html,
  22. body {
  23. width: 1920px;
  24. height: 1080px;
  25. overflow: hidden;
  26. }
  27. body {
  28. font-family: 'Noto Sans SC', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  29. color: #fff;
  30. position: relative;
  31. background: transparent;
  32. /* 移除黑色背景 */
  33. background-image: url("{{image}}");
  34. background-size: cover;
  35. background-position: center;
  36. }
  37. /* 背景使用图片并做模糊处理,完全覆盖整个页面 */
  38. .bg {
  39. position: relative;
  40. width: 100%;
  41. height: 100%;
  42. background-image: url("{{image}}");
  43. background-size: cover;
  44. background-position: center;
  45. z-index: 0;
  46. }
  47. .main {
  48. width: 100%;
  49. height: 1080px;
  50. }
  51. .title {
  52. position: absolute;
  53. top: 160px;
  54. width: 100%;
  55. text-align: center;
  56. font-size: 80px;
  57. font-weight: 600;
  58. line-height: 1.2;
  59. text-shadow: 0 6px 22px rgba(0, 0, 0, 0.6),
  60. -2px -2px 0 #000,
  61. 2px -2px 0 #000,
  62. -2px 2px 0 #000,
  63. 2px 2px 0 #000;
  64. /* 使用 Ma Shan Zheng 毛笔字体 */
  65. font-family: 'Ma Shan Zheng', 'PingFang SC', 'Source Han Sans', 'Microsoft YaHei', cursive;
  66. letter-spacing: 4px;
  67. }
  68. /* 底部字幕覆盖在图片底部 */
  69. .text {
  70. position: absolute;
  71. bottom: 170px;
  72. width: 100%;
  73. /* 稍微调整以适应全宽图片 */
  74. padding: 0 60px;
  75. text-align: center;
  76. font-size: 54px;
  77. font-weight: 400;
  78. /* line-height: 1.2; */
  79. color: #ffffff;
  80. font-family: 'ArtisticFont', 'Noto Serif SC', 'Noto Sans SC', 'PingFang SC', serif;
  81. letter-spacing: 1px;
  82. text-shadow: 0 6px 22px rgba(0, 0, 0, 0.6),
  83. -2px -2px 0 #000,
  84. 2px -2px 0 #000,
  85. -2px 2px 0 #000,
  86. 2px 2px 0 #000;
  87. }
  88. /* Footer */
  89. .footer {
  90. display: flex;
  91. align-items: center;
  92. justify-content: space-between;
  93. width: 100%;
  94. padding: 25px 20px 0 20px;
  95. position: absolute;
  96. bottom: 20px;
  97. color: #fff;
  98. text-shadow: -1px -1px 0 #000,
  99. 1px -1px 0 #000,
  100. -1px 1px 0 #000,
  101. 1px 1px 0 #000;
  102. }
  103. .author {
  104. display: flex;
  105. flex-direction: column;
  106. gap: 6px;
  107. letter-spacing: 2px;
  108. }
  109. .author-name {
  110. font-size: 30px;
  111. font-weight: 600;
  112. display: flex;
  113. align-items: center;
  114. gap: 10px;
  115. }
  116. .author-mark {
  117. width: 8px;
  118. height: 8px;
  119. /* border-radius: 50%; */
  120. /* background: rgba(149, 165, 166, 0.7); */
  121. }
  122. .author-desc {
  123. font-size: 22px;
  124. /* color: #5d6d7e; */
  125. line-height: 1.3;
  126. font-weight: 400;
  127. }
  128. .logo-section {
  129. display: flex;
  130. flex-direction: column;
  131. align-items: flex-end;
  132. gap: 8px;
  133. }
  134. .logo {
  135. font-size: 24px;
  136. font-weight: 500;
  137. }
  138. .logo-marks {
  139. display: flex;
  140. gap: 5px;
  141. }
  142. .logo-mark {
  143. width: 6px;
  144. height: 6px;
  145. border-radius: 50%;
  146. background: rgba(149, 165, 166, 0.45);
  147. }
  148. .logo-mark.active {
  149. background: rgba(149, 165, 166, 0.75);
  150. }
  151. </style>
  152. </head>
  153. <body>
  154. <!-- <div class="bg"></div> -->
  155. <div class="main">
  156. <div class="title">{{title}}</div>
  157. <div class="text">{{text}}</div>
  158. </div>
  159. <div class="footer">
  160. <div class="author">
  161. <div class="author-name">
  162. <span class="author-mark"></span>
  163. <div class="logo">{{author=@Pixelle.AI}}</div>
  164. </div>
  165. <div class="author-desc">{{describe=Open Source Omnimodal AI Creative Agent}}</div>
  166. </div>
  167. <div class="logo-section">
  168. <div class="logo">{{brand=Pixelle-Video}}</div>
  169. <div class="logo-marks">
  170. <div class="logo-mark"></div>
  171. <div class="logo-mark active"></div>
  172. <div class="logo-mark"></div>
  173. <div class="logo-mark"></div>
  174. </div>
  175. </div>
  176. </div>
  177. </body>
  178. </html>