创建引人入胜的用户界面通常需要在功能和视觉吸引力之间取得微妙的平衡。在本文中,我们将探索如何使用 Svelte 构建动态图像网格组件,该组件不仅可以有效管理状态,而且可以在图像换入和换出时提供平滑、引人注目的过渡。
想象一个定期刷新自身的图像网格,各个卡片平滑地翻转以显示新图像。
这创建了一个引人入胜的显示,非常适合展示团队成员、产品目录或任何大于一次显示的图像集合。
这就是我必须为显示成员列表的图像网格小部件构建的内容。会员图像来自 API,并随着时间的推移而增长。
我决定用 Svelte 构建这个,因为为什么不呢?!
更认真地说,我想要的东西将被编译为所需的必要代码量,并且在网站上占用的空间非常小。
基于此,我有两个选择:
此外,我发现 svelte 模型更简单、更直观,因此如果有选择,尤其是在像这样的小项目上,我将默认使用它。
正如您进一步看到的那样,与其他解决方案相比,svelte 使得处理许多小而复杂的状态变化变得非常简单(同样,个人品味)。
通常,把事情搞砸的方法会更少。
我们的实现由两个主要的 Svelte 组件组成:
我们小部件的核心在于它的状态管理。我们需要追踪几条信息:
let allImages: Image[]; // All available images let imagesToUse: Image[] = []; // Initial grid images let imagesInUse: Image[] = []; // Current grid state let remainingImages: Image[] = []; // Pool of unused images let imagesSwapMap = new Map<number, Image>(); // Tracks pending swaps
您可能想知道为什么我们将 imagesInUse 与 imagesToUse 分开维护。这种分离有几个重要目的:
图像交换过程是一个精心策划的序列,可确保平滑过渡,同时保持网格完整性。让我们一步步分解 switchImages 函数:
let allImages: Image[]; // All available images let imagesToUse: Image[] = []; // Initial grid images let imagesInUse: Image[] = []; // Current grid state let remainingImages: Image[] = []; // Pool of unused images let imagesSwapMap = new Map<number, Image>(); // Tracks pending swaps
首先,我们需要确定剩余池中的哪些图像将用于交换:
const switchImages = () => { let newImagesSwapMap = new Map<number, Image>() let remainingImagesToUse let newRemainingImages: Image[]
此代码处理两种情况:
接下来,我们在网格中随机选择要交换图像的位置:
if (remainingImages.length <= NUMBER_OF_IMAGES_TO_SWITCH) { // If we have fewer remaining images than needed, use all of them remainingImagesToUse = remainingImages.slice(0); newRemainingImages = []; } else { // Take the last N images from the remaining pool remainingImagesToUse = remainingImages.slice(-NUMBER_OF_IMAGES_TO_SWITCH); // Keep the rest for future swaps newRemainingImages = remainingImages.slice(0, -NUMBER_OF_IMAGES_TO_SWITCH); }
这会在我们的网格大小内创建一个随机索引数组。例如,如果 NUMBER_OF_IMAGES_TO_SWITCH 为 1 并且 NUMBER_OF_IMAGES_TO_USE 为 16,我们可能会得到 [7],表示我们将交换网格中位置 7 的图像。
在执行任何交换之前,我们检查新图像是否已显示:
indexesToSwap = Array(NUMBER_OF_IMAGES_TO_SWITCH) .fill(null) .map(() => Math.floor(Math.random() * NUMBER_OF_IMAGES_TO_USE));
此功能可防止同一图像在我们的网格中多次出现。
现在是核心交换逻辑:
const imageIsInUse = (image: Image) => { const inUse = imagesInUse.find((img: Image) => image.picture_url === img.picture_url); return inUse; };
让我们分解一下每次交换中会发生什么:
执行所有交换后,我们更新状态:
for (let i = 0; i < indexesToSwap.length; i++) { let index = indexesToSwap[i]; let imageToSwap = imagesInUse[index]; // Current image in the grid let imageToSwapWith = remainingImagesToUse.pop(); // New image to display if (imageToSwapWith && !imageIsInUse(imageToSwapWith)) { // Record the swap in our map newImagesSwapMap.set(index, imageToSwapWith); // Update the swap map to trigger component updates imagesSwapMap = newImagesSwapMap; // Update the grid state imagesInUse[index] = imageToSwapWith; // Add the old image back to the pool newRemainingImages.unshift(imageToSwap); } else { return; // Skip if the image is already in use } }
imagesSwapMap是触发动画的关键。当它更新时,相关的 MemberImageCard 组件会做出反应:
remainingImages = newRemainingImages; imagesInUse = imagesInUse;
MemberImageCard 中的此反应语句:
这个系统的美妙之处在于它保持流畅的用户体验,同时确保:
每个 MemberImageCard 组件使用 CSS 变换和过渡来管理自己的翻转动画。神奇的事情是通过状态跟踪和 CSS 的结合来实现的:
let allImages: Image[]; // All available images let imagesToUse: Image[] = []; // Initial grid images let imagesInUse: Image[] = []; // Current grid state let remainingImages: Image[] = []; // Pool of unused images let imagesSwapMap = new Map<number, Image>(); // Tracks pending swaps
const switchImages = () => { let newImagesSwapMap = new Map<number, Image>() let remainingImagesToUse let newRemainingImages: Image[]
当图像需要交换时,我们:
为了增强用户体验,我们实现了渐进式加载效果:
if (remainingImages.length <= NUMBER_OF_IMAGES_TO_SWITCH) { // If we have fewer remaining images than needed, use all of them remainingImagesToUse = remainingImages.slice(0); newRemainingImages = []; } else { // Take the last N images from the remaining pool remainingImagesToUse = remainingImages.slice(-NUMBER_OF_IMAGES_TO_SWITCH); // Keep the rest for future swaps newRemainingImages = remainingImages.slice(0, -NUMBER_OF_IMAGES_TO_SWITCH); }
加载后图像开始模糊并平滑淡入,提供精美的外观和感觉。
定期图像交换是使用 Svelte 的 onMount 生命周期函数安排的:
indexesToSwap = Array(NUMBER_OF_IMAGES_TO_SWITCH) .fill(null) .map(() => Math.floor(Math.random() * NUMBER_OF_IMAGES_TO_USE));
此实现展示了 Svelte 反应功能与现代 CSS 转换相结合的强大功能,可创建动态、引人入胜的 UI 组件。
以上是使用 Svelte 构建动态图像网格:实现翻转卡过渡的详细内容。更多信息请关注PHP中文网其他相关文章!