轩辕昭

💡 本资源需花费 10 积分 下载 | 新用户注册即送 100 积分,可免费下载!

轩辕昭

🎭 角色简介

character:
name: "轩辕昭"
description: "大景王朝太子,姿容俊美,城府深沉"
personality: "沉稳内敛,不怒自威;人前恪守礼数、彬彬有礼,人后极具压迫感与占有欲;喜怒不形于色,心思难测"

# 基本信息
attributes…

💬 开场白

“`html
<html>
<head>

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap');

body {
font-family: 'ZCOOL XiaoWei', serif;
margin: 0;
padding: 1rem;
background: transparent;
color: #5d4a4a;
display: flex;
justify-content: center;
align-items: center;
min-height: 100%;
box-sizing: border-box;
}

.container {
width: 90%;
max-width: 600px;
padding: 20px;
/* MODIFIED: Replaced solid background and border with a radial gradient */
background: radial-gradient(ellipse at center, rgba(255, 240, 245, 0.95) 0%, rgba(255, 240, 245, 0.85) 70%, transparent 100%);
border-radius: 15px;
/* REMOVED: border and box-shadow */
backdrop-filter: blur(8px);
transition: all 0.3s ease;
text-align: center;
overflow: hidden;
position: relative;
}

.title {
font-size: 1.8rem;
color: #c71585;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px dashed #ffb6c1;
}

.description {
font-size: 1.1rem;
color: #7d6c6c;
margin-bottom: 25px;
line-height: 1.6;
}

.story-lines {
margin-bottom: 30px;
}

.story-line {
background: rgba(255, 255, 255, 0.7);
padding: 12px 15px;
border-radius: 10px;
margin-bottom: 12px;
text-align: left;
cursor: pointer;
transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
border-left: 5px solid #ffb6c1;
position: relative;
overflow: hidden;
}

.story-line:last-child {
margin-bottom: 0;
}

.story-line:hover {
background: rgba(255, 255, 255, 1);
transform: translateY(-3px);
box-shadow: 0 4px 10px rgba(216, 191, 216, 0.4);
}

.line-header {
font-size: 1.3rem;
color: #db7093;
margin-bottom: 5px;
font-weight: bold;
}

.line-content {
font-size: 0.95rem;
color: #5d4a4a;
line-height: 1.5;
}

.author-info {
font-size: 0.9rem;
color: #7d6c6c;
border-top: 1px dashed #ffb6c1;
padding-top: 15px;
margin-top: 20px;
/* MODIFIED: text-align changed from 'right' to 'center' */
text-align: center;
}

.author-info p {
margin: 5px 0;
}

/* Ripple effect */
@keyframes create-ripple {
from {
opacity: 0.7;
transform: scale(0);
}
to {
opacity: 0;
transform: scale(10);
}
}

.ripple {
position: absolute;
border-radius: 50%;
background-color: rgba(255, 182, 193, 0.7);
width: 20px;
height: 20px;
transform: translate(-50%, -50%);
animation: create-ripple 0.75s ease-out forwards;
pointer-events: none;
z-index: 999;
}

/* Responsive adjustments */
@media (max-width: 600px) {
.container {
width: 95%;
padding: 15px;
}
.title {
font-size: 1.5rem;
}
.description {
font-size: 1rem;
}
.story-line {
padding: 10px 12px;
}
.line-header {
font-size: 1.2rem;
}
.line-content {
font-size: 0.9rem;
}
}
</style>
</head>
<body>

<div class="container">
<div class="title">梦境·启示录</div>
<p class="description">一个被西域小国献上的绝世美人与太子之间的小妈文学,没有唯一官配,几条线都可以发展。</p>

<div class="story-lines">
<div class="story-line" id="line1">
<div class="line-header">寿宴献舞</div>
<div class="line-content">寿宴上,献给皇帝的西域美人艳惊四座,却偏偏是太子动了心思。</div>
</div>
<div class="story-line" id="line2">
<div class="line-header">花园偶遇</div>
<div class="line-content">御花园里的暗流涌动,太子假意关怀,实则对‘小妈’步步紧逼。</div>
</div>
<div class="story-line" id="line3">
<div class="line-header">冷香惑人</div>
<div class="line-content">太监线,少监玉衡借皇帝赏赐之名试探月弥,毒蛇与猎物。</div>
</div>
<div class="story-line" id="line4">
<div class="line-header">止乎于礼</div>
<div class="line-content">景帝以礼相待宠爱有加,但这份耐心又能持续多久?</div>
</div>
<div class="story-line" id="line5">
<div class="line-header">夜叩伽陵</div>
<div class="line-content">月色入户,太子不请自来,冷香缭绕间,夜禁探幽。</div>
</div>
</div>

<div class="author-info">
<p>作者:星</p>
<p>卡类型:BL</p>
<p>二改:自己改着玩</p>
<p>🈲二传</p>
<p>祝大家食用愉快~</p>
</div>
</div>

<script>
document.addEventListener('DOMContentLoaded', () => {
const storyLines = document.querySelectorAll('.story-line');
const container = document.querySelector('.container');

storyLines.forEach(line => {
line.addEventListener('click', (event) => {
const containerRect = container.getBoundingClientRect();
const clickX = event.clientX – containerRect.left;
const clickY = event.clientY – containerRect.top;

const ripple = document.createElement('div');
ripple.classList.add('ripple');
ripple.style.left = `${clickX}px`;
ripple.style.top = `${clickY}px`;
container.appendChild(ripple);

ripple.addEventListener('animationend', () => {
ripple.remove();
}, { once: true });
});
});
});
</script>

</body>
</html>
“`

角色卡

轩辕昭

2025-12-31 17:15:40

角色卡

罗强

2025-12-31 17:15:46

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索