search
HomeWeb Front-endJS TutorialJavaScript study notes one: jQuery writing method, image scaling and preloading_jquery

One of the JavaScript study notes: jQuery writing method, image scaling and preloading

In the past, when using JavaScript, I always wrote a few functions on the page, and basically did not consider the encapsulation and reuse of functions. Recently, there has been This project may have high requirements in this regard, so I researched encapsulation similar to jQuery.

Here, let’s try the effects of image scaling and preloading, and write similar JavaScript code.

The effect of image scaling and preloading is as follows (the preloading effect is sometimes not very obvious):

The main JS code is as follows:

Copy code The code is as follows:

(function() {
var yQuery = (function() {
var yQuery = function () {
return yQuery.fn.init();
};
yQuery.fn = yQuery.prototype = {
init: function() {
return this;
},
//Image proportional scaling and preloading method declaration, but I feel that writing it like this (return new imgResizeBox(e)) is very awkward. Please let me know.
imgResize: function(e) {
return new imgResizeBox( e);
}
};
//image image processing
var imgResizeBox = function(e) {
//image parameter
setting = {
imgId: " ", //The ID of the image container, such as .viewArea img
height: 0,
width: 0,
loading: "images/lightbox-ico-loading.gif"
};
$.extend(setting, e, setting); //Parameter replacement
var images = $(setting.imgId); //Get all images
$(images).hide(); //Hide
var loading = new Image(); //Preload images
loading.className = "loading";
loading.src = setting.loading;
$(images).after(loading);
//Preloading function
var perLoading = function($this) {
var img = new Image();
img.src = $this.src;
if (img. complete) {
computeImg.call($this);
return;
};
img.onload = function() {
computeImg.call($this);
img .onload = function() { };
};

};
//Picture scaling processing, and picture display function
var computeImg = function() {
var m = this.height - setting.height;
var n = this.width - setting.width;
if (m > n)
this.height = this.height > setting.height ? setting .height : this.height;
else
this.width = this.width > setting.width ? setting.width : this.width;
$(this).next(".loading") .remove();
$(this).show();
};
//Call the preloading function in a loop
return $(images).each(function() {
perLoading(this);
});
}
return yQuery;
})();
window.yQuery = window.$$ = yQuery();
}) ();

The calling code is as follows:
Copy code The code is as follows:

$(document).ready(function()
{
$$.imgResize({ imgId: ".viewArea img", height:160, width:270, loading: "http:// www.jb51.net/images/2012/155618/2012062710243954.gif" });
});

Finally, the simple source code is attached: jsDemo_jb51.rar
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue中如何处理图片的缓存和预加载?Vue中如何处理图片的缓存和预加载?Aug 25, 2023 pm 04:21 PM

Vue中如何处理图片的缓存和预加载?在开发Vue项目时,我们经常需要处理图片的缓存和预加载,以提高网站性能和用户体验。本文将介绍一些Vue中处理图片缓存和预加载的方法,并给出相应的代码示例。一、图片缓存使用图片懒加载(LazyLoading)图片懒加载是一种延迟加载图片的技术,即在页面滚动到图片所在位置时才加载图片。这可以减少首次加载页面时对图片资源的请求

Vue如何实现组件的懒加载和预加载?Vue如何实现组件的懒加载和预加载?Jun 27, 2023 pm 03:24 PM

随着Web应用程序的日益复杂,前端开发人员需要在保证页面加载速度的前提下更好地提供功能和用户体验。这就涉及到Vue组件的懒加载和预加载,它们是优化Vue应用程序性能的重要手段。本文将深入介绍Vue组件的懒加载和预加载的实现方法。一、什么是懒加载懒加载就是当用户需要访问某个组件时才会把该组件的代码加载进来,而不是一开始就把所有组件的代码都加载进来,这样可以减少

UniApp实现图片处理与预加载的设计与开发技巧UniApp实现图片处理与预加载的设计与开发技巧Jul 04, 2023 pm 05:45 PM

UniApp实现图片处理与预加载的设计与开发技巧引言:在移动应用开发中,图片处理和预加载是常见的需求。UniApp作为一个跨平台的开发框架,提供了方便快捷的图片处理与预加载功能。本文将介绍UniApp中实现图片处理与预加载的设计和开发技巧,并给出相应的代码示例。一、图片处理的设计与开发缩放图片在UniApp中,要对图片进行缩放,可以使用<uni-ima

如何使用 Vue 实现图片预加载?如何使用 Vue 实现图片预加载?Jun 25, 2023 am 11:01 AM

在网页开发中,图片预载是一种常见的技术,可以提升用户的体验感。当用户浏览网页时,图片可以提前下载并加载,减少图片加载时的等待时间。在Vue框架中,我们可以通过一些简单的方法来实现图片预载。本文将介绍Vue中的图片预载技术,包括预载的原理、实现的方法和使用注意事项。一、预载的原理首先,我们来了解一下图片预载的原理。传统的图片加载方式是等到图片全部下载完成才显示

Vue技术开发中如何处理图片资源的懒加载和预加载Vue技术开发中如何处理图片资源的懒加载和预加载Oct 09, 2023 am 09:45 AM

Vue技术开发中如何处理图片资源的懒加载和预加载随着网页内容的丰富化,图片已经成为网页中必不可少的一部分。然而,大量的图片资源加载可能会导致网页加载速度变慢,影响用户的体验。为了解决这个问题,我们可以使用图片资源的懒加载和预加载技术来优化用户体验。一、懒加载技术懒加载是指网页中的图片在初次加载时只加载可视区域内的图片,当用户滚动页面到达图片所在区域时再加载图

高德如何预加载沿途图片高德如何预加载沿途图片Mar 01, 2024 pm 12:58 PM

高德地图是大家在出行时经常使用的一款导航软件,在其中有一个预加载沿途图片的功能,有些朋友对此还不是很了解,下面为大家介绍一下开启该功能的方法。在手机上打开高德地图应用程序后,转到右下角的“我的”选项,然后点击右上角的“六边形”设置图标以打开设置页面。2.来到设置页面后,其中有一个“足迹设置”,在它的上面点击进入。3.接下来在足迹设置页面里找到“预加载沿途照片”,在它的后面显示有一个开关按钮,在上面点击滑块把它设置为蓝色即可开启该功能,使用高德地图的过程中可以一键添加沿途照片。

优化网站性能的五个关键技巧优化网站性能的五个关键技巧Feb 02, 2024 pm 09:13 PM

随着互联网的快速发展,现代社会已经离不开各种各样的网站。然而,对于网站开发者和运营者来说,一个高性能的网站是至关重要的。一个快速响应、加载速度快的网站不仅可以提供更好的用户体验,还能提高搜索引擎优化的排名。本文将介绍五种关键技巧,帮助提升网站性能。首先,压缩网页内容是提升网站性能的重要一环。大多数网站都包含大量的前端资源,如HTML、CSS、JavaScri

360浏览器怎么开启预加载网页360浏览器怎么开启预加载网页Jan 30, 2024 pm 11:06 PM

360浏览器怎么开启预加载网页?我们在使用360浏览器的时候要怎么开启预加载功能,下面介绍下详细的操作!360浏览器有个预加载的功能,可以方便我们预加载需要浏览器的网页,这样也可以提升我们打开网页的速度,这样我们就有更好的浏览网页的体验,那么360浏览器应该如何开启预加载的网页呢?不会操作的话,跟着我一起往下看吧!360浏览器怎么开启预加载网页1、开启360安全浏览器,点击右上方三条线的图标,选择设置。2、找到优化加速。3、在网页预读版块中将提前加载可能会访问的页面,提高网页打卡速度勾选起来即可

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!