添加博客模块,支持Markdown渲染和文章详情页,优化图片懒加载和瀑布流布局

This commit is contained in:
2025-12-30 14:31:04 +08:00
parent 42dcf4195a
commit 79192df508
15 changed files with 3827 additions and 53 deletions
+21 -1
View File
@@ -2,6 +2,7 @@
<div class="plink-page">
<h1>友链页</h1>
<!-- 友链内容 -->
<icon-loading class="zhuan text-primary w-12 h-12" />
</div>
</template>
@@ -16,5 +17,24 @@ definePage({
</script>
<style scoped>
/* 友链页样式 */
/* 无限旋转动画 */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.zhuan {
animation: spin 1.5s linear infinite;
}
</style>