添加博客模块,支持Markdown渲染和文章详情页,优化图片懒加载和瀑布流布局
This commit is contained in:
+21
-1
@@ -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>
|
||||
Reference in New Issue
Block a user