680 lines
23 KiB
HTML
680 lines
23 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>宠物详情 - 卡片仪表盘式 V7</title>
|
|
<link rel="stylesheet" href="assets/css/common.css">
|
|
<style>
|
|
/* 卡片仪表盘式 V7 - 科技感风格,基本信息卡片化,数据可视化仪表盘 */
|
|
.dashboard-v7-container {
|
|
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
|
|
min-height: 100vh;
|
|
color: white;
|
|
}
|
|
|
|
/* 宠物信息卡片 */
|
|
.pet-info-panel {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 24px;
|
|
padding: var(--spacing-xl);
|
|
margin: var(--spacing-md);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pet-info-panel::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, #00d4ff, #ff0080, #ffaa00);
|
|
animation: neonFlow 3s linear infinite;
|
|
}
|
|
|
|
.pet-header-v7 {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-lg);
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.pet-avatar-v7 {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 20px;
|
|
border: 2px solid #00d4ff;
|
|
box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
|
|
position: relative;
|
|
}
|
|
|
|
.pet-avatar-v7::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: -2px;
|
|
left: -2px;
|
|
right: -2px;
|
|
bottom: -2px;
|
|
border-radius: 20px;
|
|
background: linear-gradient(45deg, #00d4ff, #ff0080, #ffaa00, #00d4ff);
|
|
z-index: -1;
|
|
animation: borderRotate 3s linear infinite;
|
|
}
|
|
|
|
.pet-main-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.pet-name-v7 {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
background: linear-gradient(45deg, #00d4ff, #ff0080);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.pet-type-info {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 16px;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.pet-status-indicators {
|
|
display: flex;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.status-chip {
|
|
background: rgba(0, 212, 255, 0.2);
|
|
border: 1px solid #00d4ff;
|
|
color: #00d4ff;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.status-chip.warning {
|
|
background: rgba(255, 170, 0, 0.2);
|
|
border-color: #ffaa00;
|
|
color: #ffaa00;
|
|
}
|
|
|
|
.status-chip.success {
|
|
background: rgba(0, 255, 127, 0.2);
|
|
border-color: #00ff7f;
|
|
color: #00ff7f;
|
|
}
|
|
|
|
.info-matrix {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.info-cell {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 12px;
|
|
padding: var(--spacing-md);
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.info-cell:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: #00d4ff;
|
|
box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
|
|
}
|
|
|
|
.info-cell-icon {
|
|
font-size: 20px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.info-cell-label {
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
margin-bottom: var(--spacing-xs);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.info-cell-value {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: white;
|
|
}
|
|
|
|
/* 数据仪表盘 */
|
|
.analytics-dashboard {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 24px;
|
|
padding: var(--spacing-xl);
|
|
margin: var(--spacing-md);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.dashboard-header-v7 {
|
|
text-align: center;
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.dashboard-title-v7 {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
background: linear-gradient(45deg, #00d4ff, #ff0080, #ffaa00);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.dashboard-subtitle {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.metrics-grid-v7 {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.metric-display-v7 {
|
|
text-align: center;
|
|
}
|
|
|
|
.metric-gauge-v7 {
|
|
width: 140px;
|
|
height: 140px;
|
|
margin: 0 auto var(--spacing-md);
|
|
position: relative;
|
|
}
|
|
|
|
.gauge-outer {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: var(--radius-round);
|
|
background: conic-gradient(rgba(255, 255, 255, 0.1) 0deg, rgba(255, 255, 255, 0.1) 360deg);
|
|
position: relative;
|
|
}
|
|
|
|
.gauge-progress-v7 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: var(--radius-round);
|
|
transition: all 2s ease;
|
|
}
|
|
|
|
.gauge-weight-v7 {
|
|
background: conic-gradient(#ff0080 0deg, #ff0080 302deg, transparent 302deg);
|
|
}
|
|
|
|
.gauge-activity-v7 {
|
|
background: conic-gradient(#00ff7f 0deg, #00ff7f 281deg, transparent 281deg);
|
|
}
|
|
|
|
.gauge-food-v7 {
|
|
background: conic-gradient(#00d4ff 0deg, #00d4ff 331deg, transparent 331deg);
|
|
}
|
|
|
|
.gauge-sleep-v7 {
|
|
background: conic-gradient(#ffaa00 0deg, #ffaa00 313deg, transparent 313deg);
|
|
}
|
|
|
|
.gauge-inner {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 100px;
|
|
height: 100px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
border-radius: var(--radius-round);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.gauge-value-v7 {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
color: white;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.gauge-unit-v7 {
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.metric-label-v7 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: white;
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.metric-status-v7 {
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
/* 系统状态面板 */
|
|
.system-status {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 16px;
|
|
padding: var(--spacing-lg);
|
|
margin-top: var(--spacing-xl);
|
|
}
|
|
|
|
.status-header {
|
|
text-align: center;
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.overall-status-display {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: var(--radius-round);
|
|
background: conic-gradient(#00ff7f 0deg, #00ff7f 306deg, rgba(255, 255, 255, 0.1) 306deg);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto var(--spacing-md);
|
|
position: relative;
|
|
box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
|
|
}
|
|
|
|
.overall-status-display::before {
|
|
content: '';
|
|
width: 85px;
|
|
height: 85px;
|
|
background: rgba(0, 0, 0, 0.9);
|
|
border-radius: var(--radius-round);
|
|
position: absolute;
|
|
}
|
|
|
|
.overall-status-value {
|
|
position: relative;
|
|
z-index: 2;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
color: #00ff7f;
|
|
}
|
|
|
|
.overall-status-label {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.status-indicators-v7 {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.status-indicator-v7 {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-sm);
|
|
padding: var(--spacing-sm);
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.indicator-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: var(--radius-round);
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.dot-online {
|
|
background: #00ff7f;
|
|
box-shadow: 0 0 10px #00ff7f;
|
|
}
|
|
|
|
.dot-warning {
|
|
background: #ffaa00;
|
|
box-shadow: 0 0 10px #ffaa00;
|
|
}
|
|
|
|
.indicator-text {
|
|
font-size: 14px;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
/* 控制面板 */
|
|
.control-panel {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 24px;
|
|
padding: var(--spacing-lg);
|
|
margin: var(--spacing-md);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.control-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.control-button {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 16px;
|
|
padding: var(--spacing-lg);
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.control-button::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
|
|
transition: left 0.5s ease;
|
|
}
|
|
|
|
.control-button:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-color: #00d4ff;
|
|
box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
|
|
}
|
|
|
|
.control-button:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
.control-icon-v7 {
|
|
font-size: 32px;
|
|
margin-bottom: var(--spacing-md);
|
|
background: linear-gradient(45deg, #00d4ff, #ff0080);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.control-text-v7 {
|
|
font-weight: 600;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container dashboard-v7-container">
|
|
<!-- 宠物信息面板 -->
|
|
<div class="pet-info-panel">
|
|
<div class="pet-header-v7">
|
|
<div class="pet-avatar-v7">
|
|
<img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiByeD0iNTAiIGZpbGw9IiNGRjhBODAiLz4KPHRleHQgeD0iNTAiIHk9IjU1IiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMzAiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj7wn5GBPC90ZXh0Pgo8L3N2Zz4K"
|
|
alt="小橘" style="width: 100%; height: 100%; object-fit: cover; border-radius: 20px;">
|
|
</div>
|
|
<div class="pet-main-info">
|
|
<h1 class="pet-name-v7">XIAOJU.EXE</h1>
|
|
<p class="pet-type-info">ORANGE_CAT v2.3 | MALE | RUNTIME: 645 DAYS</p>
|
|
<div class="pet-status-indicators">
|
|
<span class="status-chip success">ONLINE</span>
|
|
<span class="status-chip">HEALTHY</span>
|
|
<span class="status-chip warning">UPDATE_NEEDED</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="info-matrix">
|
|
<div class="info-cell">
|
|
<div class="info-cell-icon">🎂</div>
|
|
<div class="info-cell-label">BIRTH_DATE</div>
|
|
<div class="info-cell-value">2022.03.15</div>
|
|
</div>
|
|
<div class="info-cell">
|
|
<div class="info-cell-icon">🏠</div>
|
|
<div class="info-cell-label">INSTALL_DATE</div>
|
|
<div class="info-cell-value">2022.04.20</div>
|
|
</div>
|
|
<div class="info-cell">
|
|
<div class="info-cell-icon">💕</div>
|
|
<div class="info-cell-label">UPTIME</div>
|
|
<div class="info-cell-value">645 DAYS</div>
|
|
</div>
|
|
<div class="info-cell">
|
|
<div class="info-cell-icon">⚖️</div>
|
|
<div class="info-cell-label">WEIGHT</div>
|
|
<div class="info-cell-value">4.2 KG</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 数据分析仪表盘 -->
|
|
<div class="analytics-dashboard">
|
|
<div class="dashboard-header-v7">
|
|
<h2 class="dashboard-title-v7">HEALTH ANALYTICS DASHBOARD</h2>
|
|
<p class="dashboard-subtitle">Real-time monitoring system</p>
|
|
</div>
|
|
|
|
<div class="metrics-grid-v7">
|
|
<!-- 体重监测 -->
|
|
<div class="metric-display-v7">
|
|
<div class="metric-gauge-v7">
|
|
<div class="gauge-outer">
|
|
<div class="gauge-progress-v7 gauge-weight-v7"></div>
|
|
<div class="gauge-inner">
|
|
<div class="gauge-value-v7">4.2</div>
|
|
<div class="gauge-unit-v7">KG</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metric-label-v7">WEIGHT_MONITOR</div>
|
|
<div class="metric-status-v7">OPTIMAL_RANGE: 84%</div>
|
|
</div>
|
|
|
|
<!-- 活动监测 -->
|
|
<div class="metric-display-v7">
|
|
<div class="metric-gauge-v7">
|
|
<div class="gauge-outer">
|
|
<div class="gauge-progress-v7 gauge-activity-v7"></div>
|
|
<div class="gauge-inner">
|
|
<div class="gauge-value-v7">78</div>
|
|
<div class="gauge-unit-v7">%</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metric-label-v7">ACTIVITY_INDEX</div>
|
|
<div class="metric-status-v7">STATUS: ACTIVE</div>
|
|
</div>
|
|
|
|
<!-- 食欲监测 -->
|
|
<div class="metric-display-v7">
|
|
<div class="metric-gauge-v7">
|
|
<div class="gauge-outer">
|
|
<div class="gauge-progress-v7 gauge-food-v7"></div>
|
|
<div class="gauge-inner">
|
|
<div class="gauge-value-v7">92</div>
|
|
<div class="gauge-unit-v7">%</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metric-label-v7">APPETITE_LEVEL</div>
|
|
<div class="metric-status-v7">STATUS: EXCELLENT</div>
|
|
</div>
|
|
|
|
<!-- 睡眠监测 -->
|
|
<div class="metric-display-v7">
|
|
<div class="metric-gauge-v7">
|
|
<div class="gauge-outer">
|
|
<div class="gauge-progress-v7 gauge-sleep-v7"></div>
|
|
<div class="gauge-inner">
|
|
<div class="gauge-value-v7">14</div>
|
|
<div class="gauge-unit-v7">H</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metric-label-v7">SLEEP_DURATION</div>
|
|
<div class="metric-status-v7">STATUS: OPTIMAL</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 系统状态 -->
|
|
<div class="system-status">
|
|
<div class="status-header">
|
|
<div class="overall-status-display">
|
|
<div class="overall-status-value">85</div>
|
|
</div>
|
|
<div class="overall-status-label">SYSTEM_HEALTH_SCORE</div>
|
|
</div>
|
|
|
|
<div class="status-indicators-v7">
|
|
<div class="status-indicator-v7">
|
|
<div class="indicator-dot dot-online"></div>
|
|
<div class="indicator-text">VACCINE_MODULE: ACTIVE</div>
|
|
</div>
|
|
<div class="status-indicator-v7">
|
|
<div class="indicator-dot dot-warning"></div>
|
|
<div class="indicator-text">DEWORMING: UPDATE_REQUIRED</div>
|
|
</div>
|
|
<div class="status-indicator-v7">
|
|
<div class="indicator-dot dot-online"></div>
|
|
<div class="indicator-text">DENTAL_SYSTEM: OPTIMAL</div>
|
|
</div>
|
|
<div class="status-indicator-v7">
|
|
<div class="indicator-dot dot-online"></div>
|
|
<div class="indicator-text">VISION_SENSOR: NORMAL</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 控制面板 -->
|
|
<div class="control-panel">
|
|
<div class="control-grid">
|
|
<div class="control-button" onclick="interactions.handleButtonClick('addRecord')">
|
|
<div class="control-icon-v7">📝</div>
|
|
<div class="control-text-v7">LOG_DATA</div>
|
|
</div>
|
|
<div class="control-button" onclick="interactions.handleButtonClick('aiChat')">
|
|
<div class="control-icon-v7">💬</div>
|
|
<div class="control-text-v7">AI_ASSISTANT</div>
|
|
</div>
|
|
<div class="control-button" onclick="interactions.handleButtonClick('healthChart')">
|
|
<div class="control-icon-v7">📊</div>
|
|
<div class="control-text-v7">ANALYTICS</div>
|
|
</div>
|
|
<div class="control-button" onclick="interactions.handleButtonClick('timeline')">
|
|
<div class="control-icon-v7">⏰</div>
|
|
<div class="control-text-v7">TIMELINE</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="assets/js/common.js"></script>
|
|
<script>
|
|
// 科技感仪表盘 V7 特有交互
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// 科技感入场动画
|
|
const panels = document.querySelectorAll('.pet-info-panel, .analytics-dashboard, .control-panel');
|
|
panels.forEach((panel, index) => {
|
|
panel.style.opacity = '0';
|
|
panel.style.transform = 'translateY(50px) scale(0.9)';
|
|
|
|
setTimeout(() => {
|
|
panel.style.transition = 'all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)';
|
|
panel.style.opacity = '1';
|
|
panel.style.transform = 'translateY(0) scale(1)';
|
|
}, index * 300);
|
|
});
|
|
|
|
// 仪表盘扫描动画
|
|
setTimeout(() => {
|
|
const gauges = document.querySelectorAll('.gauge-progress-v7');
|
|
gauges.forEach((gauge, index) => {
|
|
setTimeout(() => {
|
|
gauge.style.animation = 'scanRotate 3s ease forwards';
|
|
}, index * 500);
|
|
});
|
|
}, 1000);
|
|
|
|
// 系统状态动画
|
|
setTimeout(() => {
|
|
const statusDisplay = document.querySelector('.overall-status-display');
|
|
statusDisplay.style.animation = 'systemBoot 2s ease forwards';
|
|
}, 2000);
|
|
|
|
console.log('科技感仪表盘 V7 系统已启动');
|
|
});
|
|
|
|
// 添加科技感动画样式
|
|
const style = document.createElement('style');
|
|
style.textContent = `
|
|
@keyframes neonFlow {
|
|
0%, 100% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
}
|
|
|
|
@keyframes borderRotate {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
@keyframes scanRotate {
|
|
from {
|
|
transform: rotate(-180deg);
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
transform: rotate(0deg);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes systemBoot {
|
|
0% {
|
|
transform: scale(0.5);
|
|
opacity: 0;
|
|
}
|
|
50% {
|
|
transform: scale(1.1);
|
|
opacity: 0.8;
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
`;
|
|
document.head.appendChild(style);
|
|
</script>
|
|
</body>
|
|
</html>
|