交换 img src 或显示/隐藏多个图像是否更快?

Is it faster to swap an img src or show/hide multiple images?(交换 img src 或显示/隐藏多个图像是否更快?)
本文介绍了交换 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 或显示/隐藏多个图像是否更快?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)