136 lines
2.2 KiB
HTML
136 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html { background: #ffffff; }
|
|
body {
|
|
width: 720pt;
|
|
height: 405pt;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #F5F1E8;
|
|
font-family: Arial, sans-serif;
|
|
display: flex;
|
|
}
|
|
|
|
.slide-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
/* Watermark */
|
|
.watermark {
|
|
position: absolute;
|
|
top: 42%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-size: 250pt;
|
|
color: #B8974F;
|
|
opacity: 0.08;
|
|
font-family: "SimSun", "STSong", serif;
|
|
line-height: 1;
|
|
z-index: 0;
|
|
}
|
|
|
|
.watermark p {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
/* Title */
|
|
.title {
|
|
position: absolute;
|
|
top: 30pt;
|
|
left: 60pt;
|
|
right: 60pt;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.title h2 {
|
|
font-family: Georgia, serif;
|
|
font-size: 36pt;
|
|
color: #6B2C3E;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Video placeholder areas */
|
|
.video-area {
|
|
position: absolute;
|
|
background: #ffffff;
|
|
border: 2pt dashed #B8974F;
|
|
border-radius: 8pt;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.video-left {
|
|
top: 90pt;
|
|
left: 60pt;
|
|
width: 270pt;
|
|
height: 160pt;
|
|
}
|
|
|
|
.video-right {
|
|
top: 90pt;
|
|
right: 60pt;
|
|
width: 270pt;
|
|
height: 160pt;
|
|
}
|
|
|
|
.video-area p {
|
|
font-size: 14pt;
|
|
color: #4A5568;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 20pt;
|
|
}
|
|
|
|
/* Quote at bottom */
|
|
.quote {
|
|
position: absolute;
|
|
bottom: 40pt;
|
|
left: 100pt;
|
|
right: 100pt;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.quote p {
|
|
font-size: 14pt;
|
|
color: #6B2C3E;
|
|
font-style: italic;
|
|
line-height: 1.4;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="slide-content">
|
|
<div class="watermark">
|
|
<p>魂</p>
|
|
</div>
|
|
|
|
<div class="title">
|
|
<h2>这就是我们:七(3)班魂</h2>
|
|
</div>
|
|
|
|
<div class="video-area video-left">
|
|
<p>📹<br/>班魂口号视频<br/>(婷婷自行插入)</p>
|
|
</div>
|
|
|
|
<div class="video-area video-right">
|
|
<p>📹<br/>本学期活动视频<br/>国庆班班唱 + 秋游<br/>(婷婷自行插入)</p>
|
|
</div>
|
|
|
|
<div class="quote">
|
|
<p>"团结友爱,互帮互助,一起进步<br/>这些美好的瞬间,是我们班级的骄傲"</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|