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 或显示/隐藏多个图像是否更快?


基础教程推荐
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01