Files
test-repo/docs/.vitepress/theme/components/appendix/audio-intro/AudioWaveformDemo.vue
T
sanbuphy d35211071a style: update border-radius and padding values across components
- standardize border-radius from 8px to 6px for consistent styling
- adjust padding values from 1rem to 0.75rem for better visual hierarchy
- remove redundant overflow-y properties for cleaner code
2026-02-14 20:23:34 +08:00

164 lines
3.2 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="waveform-demo">
<div class="demo-container">
<!-- Step 1: Sound Wave -->
<div class="step-box">
<div class="label">🌊 声波</div>
<div class="wave-visual">
<svg viewBox="0 0 200 60" class="wave-svg">
<path
d="M 0 30 Q 10 10, 20 30 T 40 30 T 60 30 T 80 30 T 100 30 T 120 30 T 140 30 T 160 30 T 180 30 T 200 30"
fill="none"
stroke="#22c55e"
stroke-width="2"
/>
</svg>
</div>
<div class="desc">连续模拟信号</div>
</div>
<div class="arrow"></div>
<!-- Step 2: Sampling -->
<div class="step-box">
<div class="label">📊 采样</div>
<div class="sample-visual">
<div v-for="n in 10" :key="n" class="sample-bar"></div>
</div>
<div class="desc">44100 /</div>
</div>
<div class="arrow"></div>
<!-- Step 3: Digital -->
<div class="step-box">
<div class="label">🔢 数字化</div>
<div class="digital-visual">
<div v-for="n in 8" :key="n" class="bit">
{{ Math.floor(Math.random() * 2) }}
</div>
</div>
<div class="desc">PCM 数据</div>
</div>
</div>
<div class="explanation">
<p>
<span class="icon">💡</span>
计算机无法直接处理连续的声波需要把它转换成数字 这个过程叫<strong
>模数转换 (ADC)</strong
>每隔一小段时间测量一次声音的强度记录成数字
</p>
</div>
</div>
</template>
<style scoped>
.waveform-demo {
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
padding: 20px;
background: var(--vp-c-bg-soft);
margin: 20px 0;
}
.demo-container {
display: flex;
align-items: center;
justify-content: space-around;
gap: 20px;
flex-wrap: wrap;
}
.step-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.label {
font-weight: bold;
font-size: 0.9em;
color: var(--vp-c-text-2);
}
.desc {
font-size: 0.8em;
color: var(--vp-c-text-3);
}
.wave-visual {
width: 200px;
height: 60px;
background: var(--vp-c-bg);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
}
.wave-svg {
width: 100%;
height: 100%;
}
.sample-visual {
display: flex;
gap: 3px;
align-items: flex-end;
height: 60px;
width: 120px;
background: var(--vp-c-bg);
border-radius: 6px;
padding: 10px;
}
.sample-bar {
width: 8px;
background: #22c55e;
border-radius: 2px;
flex: 1;
}
.digital-visual {
display: flex;
gap: 4px;
padding: 10px 15px;
background: var(--vp-c-bg);
border-radius: 6px;
}
.bit {
width: 20px;
height: 20px;
background: #3b82f6;
color: white;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75em;
font-weight: bold;
}
.arrow {
font-size: 1.5em;
color: var(--vp-c-text-3);
}
.explanation {
margin-top: 20px;
padding: 12px;
background: var(--vp-c-bg-mute);
border-radius: 6px;
font-size: 0.9em;
line-height: 1.6;
}
.icon {
font-size: 1.2em;
}
</style>