feat: 标签云
This commit is contained in:
@@ -25,6 +25,22 @@ const { data: categories } =
|
|||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="widget">
|
||||||
|
<h3 class="widget-title">🏷️ 标签云</h3>
|
||||||
|
<div class="tag-cloud">
|
||||||
|
<a class="tag" href="#">HTML</a>
|
||||||
|
<a class="tag" href="#">CSS</a>
|
||||||
|
<a class="tag" href="#">JavaScript</a>
|
||||||
|
<a class="tag" href="#">响应式</a>
|
||||||
|
<a class="tag" href="#">随笔</a>
|
||||||
|
<a class="tag" href="#">读书</a>
|
||||||
|
<a class="tag" href="#">效率</a>
|
||||||
|
<a class="tag" href="#">设计</a>
|
||||||
|
<a class="tag" href="#">工具</a>
|
||||||
|
<a class="tag" href="#">深色模式</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -76,7 +92,7 @@ const { data: categories } =
|
|||||||
}
|
}
|
||||||
|
|
||||||
.category-list a:hover {
|
.category-list a:hover {
|
||||||
color: var(--primary);
|
color: #4f6df5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-list .count {
|
.category-list .count {
|
||||||
@@ -84,6 +100,31 @@ const { data: categories } =
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tag-cloud {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
|
display: flex;
|
||||||
|
gap: 8px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #4f6df5;
|
||||||
|
background: #eef1fe;
|
||||||
|
padding: 3px 10px;
|
||||||
|
border-radius: 999px;
|
||||||
|
transition: background 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag:hover {
|
||||||
|
background: #dfe6fd;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 860px) {
|
@media (max-width: 860px) {
|
||||||
.sidebar {
|
.sidebar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
type Tag = {
|
export type Tag = {
|
||||||
id: number
|
id: number
|
||||||
code: string
|
code: string
|
||||||
name: string
|
name: string
|
||||||
|
|||||||
Reference in New Issue
Block a user