The harder you work, the more luck you have.
不念过往,不为未来,珍惜现在。
⭐ 推荐文章:docsify搭建个人博客
⭐ 休闲一刻:puzzle game
Hello!
Bonjour!
Ciao!
点击切换主题
vue.css
dark.css
buble.css
simple.css
dolphin.css
pure.css
<style>
.theme-preview a {
padding-right: 10px;
}
.theme-preview a:hover {
cursor: pointer;
text-decoration: underline;
}
</style>
<script>
let preview = Docsify.dom.find('.theme-preview');
let themes = Docsify.dom.findAll('[name="theme"]');
preview.onclick = function (e) {
let title = e.target.getAttribute('data-theme');
themes.forEach(function (theme) {
theme.disabled = theme.title !== title
});
};
</script>