![]()
🎭 角色简介
setting:
timeline:
year: 2052 (蓝星历)
event: 吸血鬼族群刚刚战败
location:
name: 古兰城堡
type: 监禁设施
features:
– 位于偏僻小岛上
– 西面环水无法离开
– 专…
💬 开场白
“`
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@font-face {
font-family: 'XinWei';
src: local('XinWei');
}
@font-face {
font-family: 'Source Han Serif CN';
src: local('Source Han Serif CN');
}
.story-text {
font-family: 'KaiTi', '楷体', serif;
font-weight: bold;
}.container {
margin-top: 25px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 25px;
padding: 0 15px;
}.container .card-wrapper {
position: relative;
width: 220px;
height: 500px;
background: #ffd1dc;
border: 1px solid rgba(165, 0, 0, 0.3);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s;
border-radius: 10px;
margin: 0 -45px;
transform: rotate(calc(var(–r) * 1deg));
}@media screen and (max-width: 768px) {
.container {
padding: 0 25px;
}.container .card-wrapper {
margin: 0 -25px;
transform: rotate(calc(var(–r) * 0.5deg));
}.container:hover .card-wrapper {
margin: 0 5px;
}
}.container:hover .card-wrapper {
transform: rotate(0deg);
margin: 0 10px;
}.card-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
}.card {
width: 200px;
height: 200px;
border-radius: 5px;
background: rgba(255, 241, 183, 0.9);
display: flex;
gap: 3px;
padding: .3em;
position: relative;
overflow: hidden;
margin-top: 5px;
margin-bottom: 5px;
}.card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 250px;
height: 300px;
background: linear-gradient(0deg, transparent, rgba(238, 72, 102, 0.6), rgba(238, 72, 102, 0.6));
transform-origin: bottom right;
animation: animate 6s linear infinite;
}.card::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 250px;
height: 300px;
background: linear-gradient(0deg, transparent, rgba(238, 72, 102, 0.9), rgba(238, 72, 102, 0.9));
transform-origin: bottom right;
animation: animate 6s linear infinite;
animation-delay: -3s;
}@keyframes animate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}.card div {
height: 100%;
flex: 1;
overflow: hidden;
cursor: pointer;
border-radius: 3px;
transition: all .5s;
background: rgba(255, 248, 220, 0.95);
border: 1px solid rgba(255, 248, 220, 0.3);
display: flex;
justify-content: center;
align-items: center;
position: relative;
z-index: 1;
}.card div:hover {
flex: 6;
}.card div img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all .5s;
}.card div:hover img {
width: 100%;
height: 100%;
}.intro-text {
color: #857579;
margin-right: 3px;
margin-left: 5px;
font-size: 11px;
font-family: 'XinWei', sans-serif;
font-weight: bold;
line-height: 1.1;
}.intro-text p:first-child {
animation: glow 2s ease-in-out infinite;
text-shadow: 0 0 2px #ffed98,
0 0 5px #fff2b5,
0 0 10px #fff7d2,
0 0 15px #fffbea;
}@keyframes glow {
0% {
opacity: 1;
text-shadow: 0 0 2px #ffed98,
0 0 5px #fff2b5,
0 0 10px #fff7d2,
0 0 15px #fffbea;
}
50% {
opacity: 0.5;
text-shadow: 0 0 2px #ffed98,
0 0 5px #fff2b5,
0 0 10px #fff7d2,
0 0 15px #fffbea;
}
100% {
opacity: 1;
text-shadow: 0 0 5px #ffed98,
0 0 5px #fff2b5,
0 0 10px #fff7d2,
0 0 15px #fffbea;
}
}.glow-btn {
position: relative;
margin-bottom: 5px;
padding: 4px 6px;
color: #c40035;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
overflow: hidden;
background: transparent;
border: none;
border-radius: 5px;
transition: 0.5s;
cursor: pointer;
font-size: 12px;
font-family: 'XinWei', sans-serif;
}.glow-btn:hover {
background: #e86082;
color: #e5e5e5;
box-shadow: 0 0 5px #ff5a91;
}.glow-btn span {
position: absolute;
display: block;
}.glow-btn span:nth-child(1) {
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #ff003f);
animation: animate-span-1 1s linear infinite;
}@keyframes animate-span-1 {
0% {
left: -100%;
}
50%,100% {
left: 100%;
}
}.glow-btn span:nth-child(2) {
top: -100%;
right: 0;
width: 2px;
height: 100%;
background: linear-gradient(180deg, transparent, #ff003f);
animation: animate-span-2 1s linear infinite;
animation-delay: 0.25s;
}@keyframes animate-span-2 {
0% {
top: -100%;
}
50%,100% {
top: 100%;
}
}.glow-btn span:nth-child(3) {
bottom: 0;
right: 0;
width: 100%;
height: 2px;
background: linear-gradient(270deg, transparent, #ff003f);
animation: animate-span-3 1s linear infinite;
animation-delay: 0.50s;
}@keyframes animate-span-3 {
0% {
right: -100%;
}
50%,100% {
right: 100%;
}
}.glow-btn span:nth-child(4) {
bottom: -100%;
left: 0;
width: 2px;
height: 100%;
background: linear-gradient(360deg, transparent, #ff003f);
animation: animate-span-4 1s linear infinite;
animation-delay: 0.75s;
}@keyframes animate-span-4 {
0% {
bottom: -100%;
}
50%,100% {
bottom: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div data-text="Code" style="–r:3;" class="card-wrapper">
<div class="card-container">
<div class="card">
<div><img src="https://files.catbox.moe/pr1jvz.png" alt="Image 1"></div>
<div><img src="https://files.catbox.moe/4073rm.png" alt="Image 2"></div>
<div><img src="https://files.catbox.moe/cpv3vi.png" alt="Image 3"></div>
<div><img src="https://files.catbox.moe/q78hm6.png" alt="Image 4"></div>
<div><img src="https://files.catbox.moe/5mn327.png" alt="Image 5"></div>
</div>
<div class="intro-text">
<p>背景介绍:</p>
<p class="story-text">蓝星历2052年,吸血鬼族群战败,始祖"维克多"被戴上禁欲环,和幸存的几位吸血鬼贵族被囚于偏僻的古兰城堡中。你作为人类派出的驯化官,表面是去驯化这群不服管教的吸血鬼,但实际却成了他们反向驯服的对象,你能承受住几次"初拥"呢?</p>
</div>
<div class="intro-text">
<p>游戏说明:</p>
<p class="story-text">你拥有一个导航系统,必须在血量耗尽和"红月"前榨干吸血鬼的精液,每榨干吸血鬼一次,系统会给出一次评价,每三个好评驯化官等级才能晋升下一级。</p>
</div><button class="glow-btn" onclick="startGame()" style="font-family: 'XinWei', sans-serif !important;">
<span></span>
<span></span>
<span></span>
<span></span>
开始游戏
</button>
</div>
</div>
</div>
<script>
function startGame() {
const command = `/addswipe switch=true <shuo></shuo>`;
window.triggerSlash(command);
}
</script>
</body>
</html>
“`