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

@@ -90,7 +90,7 @@ $resultApps = $conn->query($sqlApps);
$image = $resultImage ? $resultImage->fetch_assoc() : null;
$imagePath = $image ? $image['image_path'] : 'default-app.png';
?>
<img src="<?php echo $imagePath; ?>" class="card-img-top" alt="<?php echo htmlspecialchars($app['name']); ?>">
<div class="card-body">
<h5 class="card-title"><?php echo htmlspecialchars($app['name']); ?></h5>
<p class="card-text"><?php echo htmlspecialchars(substr($app['description'], 0, 100)); ?>...</p>