Files
test-repo/docs/.vitepress/theme/components/appendix/web-basics/CssPlaygroundDemo.vue
T
sanbuphy 0eba9e87e9 fix(eslint): reduce warnings in GitHub Actions deployment
- Disable formatting rules (handled by Prettier)
- Relaxed strict Vue/JS rules for demo code compatibility
- Fix syntax errors in ApiPlayground and VoiceCloningDemo
- Fix duplicate else-if condition in ApiPlayground
- Fix Promise executor async pattern in AutoregressiveAudioDemo
- Add TypeScript file support to ESLint config

Warnings reduced from 295 to 251 problems.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-18 17:38:10 +08:00

225 lines
4.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="css-playground">
<div class="demo-box">
<div
class="target-element"
:style="{
backgroundColor: bgColor,
color: textColor,
fontSize: fontSize + 'px',
padding: padding + 'px',
borderRadius: borderRadius + 'px',
border: `${borderWidth}px solid ${borderColor}`
}"
>
我是演示元素
</div>
</div>
<div class="controls">
<div class="control-group">
<label>背景颜色 (background-color)</label>
<input
v-model="bgColor"
type="color"
>
<span class="value">{{ bgColor }}</span>
</div>
<div class="control-group">
<label>文字颜色 (color)</label>
<input
v-model="textColor"
type="color"
>
<span class="value">{{ textColor }}</span>
</div>
<div class="control-group">
<label>字体大小 (font-size)</label>
<input
v-model="fontSize"
type="range"
min="12"
max="48"
>
<span class="value">{{ fontSize }}px</span>
</div>
<div class="control-group">
<label>内边距 (padding)</label>
<input
v-model="padding"
type="range"
min="0"
max="50"
>
<span class="value">{{ padding }}px</span>
</div>
<div class="control-group">
<label>圆角 (border-radius)</label>
<input
v-model="borderRadius"
type="range"
min="0"
max="50"
>
<span class="value">{{ borderRadius }}px</span>
</div>
<div class="control-group">
<label>边框宽度 (border-width)</label>
<input
v-model="borderWidth"
type="range"
min="0"
max="10"
>
<span class="value">{{ borderWidth }}px</span>
</div>
<div class="control-group">
<label>边框颜色 (border-color)</label>
<input
v-model="borderColor"
type="color"
>
<span class="value">{{ borderColor }}</span>
</div>
</div>
<div class="code-preview">
<div class="code-title">
生成的 CSS 代码
</div>
<pre><code>.element {
background-color: <span class="highlight">{{ bgColor }}</span>;
color: <span class="highlight">{{ textColor }}</span>;
font-size: <span class="highlight">{{ fontSize }}px</span>;
padding: <span class="highlight">{{ padding }}px</span>;
border-radius: <span class="highlight">{{ borderRadius }}px</span>;
border: <span class="highlight">{{ borderWidth }}px</span> solid <span class="highlight">{{ borderColor }}</span>;
}</code></pre>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue'
const bgColor = ref('#3b82f6')
const textColor = ref('#ffffff')
const fontSize = ref(16)
const padding = ref(20)
const borderRadius = ref(8)
const borderWidth = ref(0)
const borderColor = ref('#000000')
</script>
<style scoped>
.css-playground {
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
background: var(--vp-c-bg-soft);
padding: 20px;
margin: 20px 0;
display: flex;
flex-direction: column;
gap: 20px;
}
.demo-box {
background: var(--vp-c-bg);
border: 1px dashed var(--vp-c-divider);
border-radius: 6px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.target-element {
transition: all 0.2s ease;
text-align: center;
/* Ensure it doesn't overflow easily */
max-width: 90%;
max-height: 90%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.controls {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
}
.control-group {
display: flex;
align-items: center;
gap: 10px;
background: var(--vp-c-bg);
padding: 8px 12px;
border-radius: 6px;
border: 1px solid var(--vp-c-divider);
}
.control-group label {
font-size: 13px;
color: var(--vp-c-text-2);
flex: 1;
}
.value {
font-family: var(--vp-font-family-mono);
font-size: 12px;
color: var(--vp-c-text-1);
width: 60px;
text-align: right;
}
input[type='range'] {
flex: 1;
cursor: pointer;
}
input[type='color'] {
width: 30px;
height: 30px;
padding: 0;
border: none;
background: none;
cursor: pointer;
border-radius: 4px;
}
.code-preview {
background: #1e1e1e;
border-radius: 6px;
padding: 16px;
color: #d4d4d4;
font-family: var(--vp-font-family-mono);
font-size: 13px;
}
.code-title {
color: #808080;
margin-bottom: 8px;
font-size: 12px;
}
pre {
margin: 0;
white-space: pre-wrap;
}
.highlight {
color: #9cdcfe;
font-weight: bold;
}
</style>