refactor(UI): 移除卡片图片并添加骨架屏动画

移除多个页面中的默认卡片图片以简化UI
在评分图表区域添加骨架屏加载动画,提升用户体验
This commit is contained in:
2025-07-07 19:29:09 +08:00
parent 04c14f9648
commit 5ff5b53ed4
5 changed files with 33 additions and 4 deletions

View File

@@ -135,7 +135,7 @@ $tagResult = $conn->query("SELECT id, name FROM tags ORDER BY name");
<?php while ($row = $result->fetch_assoc()): ?>
<div class="col-md-3 mb-4">
<div class="card blur-bg">
<img src="images/default.png" class="card-img-top" alt="<?php echo $row['name']; ?>">
<div class="card-body">
<h5 class="card-title"><?php echo $row['name']; ?></h5>
<p class="card-text"><?php echo substr($row['description'], 0, 100); ?>...</p>