
> odyssey - an intellectual or spiritual wandering or quest
<!-- more -->
## 表设计
- [ ] word 字段需要加唯一索引 ⏰ 2024-04-24📅 2024-04-25

## Anki 中插入 oss 的音频
<audio src="audiofile.mp3" autoplay> Your browser does not support the audio element. </audio>
```html
<meta charset="UTF-8">
<title>Custom Audio Player</title>
<style>
audio {
width: 100%;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden; /* Helps contain the inner elements */
}
/* Chrome, Safari, Edge, Opera */
audio::-webkit-media-controls-panel {
background-color: white;
color: black;
}
/* Firefox */
audio::-moz-focus-inner {
border: 0;
}
audio::-moz-range-track {
background-color: white;
}
/* Might not fully change the background but attempts to lighten it */
audio::--webkit-media-controls-enclosure {
background-color: white !important;
}
</style>
<audio controls="" autoplay="">
<source src="https://odyssey-liugongzi.oss-cn-beijing.aliyuncs.com/Her%20(brilliant)%20idea%20solved%20the%20problem..mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
```