zoukankan      html  css  js  c++  java
  • Preloading an Image with jQuery--reference

    Preloading images will make your application a bit faster by making it lightweight. It is very simple and easy to create and load DOM elements (in this case referring to images) with jQuery. If you want to preload images using jQuery there here is a detailed explanation on how you can do this:
    • The foremost thing you need to do is create an image DOM element by providing a value for the src attribute for the image so that the web browser will know which image it has to load i.e. preloading the image. You can make use of the below code snippet for preloading an image using jQuery :

    1
    2
    
    // Create an image DOM  element
    var image1 = $('<img alt="" />').attr('src', 'link.jpg');

    • Once you are done with creating the DOM image element you must insert this DOM image element inside the DOM tree by making use of any of the DOM manipulation methods. The most excellent method of doing this is to use the callback method so that it will insert the preloaded image directly into your application once it has completed loading.
    • One more way is to make use of a jQuery plug-in to preload the image.

    reference from:http://www.webdeveloperjuice.com/2014/08/06/preloading-an-image-with-jquery/

  • 相关阅读:
    浅谈 倍增/ST表
    Meetings S 题解
    排序模板
    Huffman 树
    2020.7.31 模拟赛 题解
    浅谈 最短路
    【lcez校内第三次考T1】【题解】folder
    【题解】 P2613 【模板】有理数取余
    【题解】P5535 【XR-3】小道消息
    【笔记】积性函数 与 欧拉函数
  • 原文地址:https://www.cnblogs.com/davidwang456/p/3921285.html
Copyright © 2011-2022 走看看