Is it faster to swap an img src or show/hide multiple images?(交换 img src 或显示/隐藏多个图像是否更快?)
问题描述
在网页上交换图片时使用的最佳做法是什么?更改图像源或仅在页面上显示/隐藏多个图像?
What is the best practice to use when swapping an image on a webpage? Altering the image source or just showing/hiding multiple images on the page?
推荐答案
为了平衡速度,你必须选择,有两个选项:
you have to choose in order to balance speed, with your two options:
修改图片来源
这样,页面加载速度会更快,因为它只获取可见图像,但是当您更改 src 属性时,显示新图像会花费更长的时间
this way, the page will load faster because it only gets the visible images but it will take a little longer to show the new image when you change src attribute
只显示/隐藏多张图片
这样,您将在页面加载时加载所有图像,这将使其加载速度变慢而交换图像速度更快
this way, you are loading all the images on page load which will make it slower on loading and faster on swapping the images
这篇关于交换 img src 或显示/隐藏多个图像是否更快?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:交换 img src 或显示/隐藏多个图像是否更快?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01