Jquery 在ajax加载的内容中预加载图像

Jquery 在ajax加载的内容中预加载图像,jquery,ajax,image,html,Jquery,Ajax,Image,Html,我正在使用这个脚本 它从URL中的特定id加载内容到当前页面,并设置动画。。。从页面的侧面滑动…当用户单击链接时 除了需要时间加载的图像外,其他一切都正常。。。我尝试并努力将图像预装到这个?所以所有的内容一起加载 function goTo(href) { var left = $(window).width(); $('#id').css("left", left); $.ajax({ url: href, success: func

我正在使用这个脚本

它从URL中的特定id加载内容到当前页面,并设置动画。。。从页面的侧面滑动…当用户单击链接时

除了需要时间加载的图像外,其他一切都正常。。。我尝试并努力将图像预装到这个?所以所有的内容一起加载

function goTo(href) {

    var left = $(window).width();
    $('#id').css("left", left);

    $.ajax({
        url: href,
        success: function (data) {

            var content = $(data).find('#id').html();

            // Windows Load Function
            $(window).load(function () {

                $("#id").html(content).animate({
                    left: '0',
                }, 'fast');

                var title = $('#id').find('h1').text();
                $('head').find('title').text(title);

            });
        }
    });
}

// check for support before we move ahead

if (typeof history.pushState !== "undefined") {
    var historyCount = 0;

    // On click of link Load content and animate
    $('.access a').live('click', function () {

        var href = $(this).attr('href');

        goTo(href);

        history.pushState(null, null, href);
        return false;
    });

    window.onpopstate = function () {
        if (historyCount) {
            goTo(document.location);
        }
        historyCount = historyCount + 1;
    };
}

窗口加载事件只发生一次。您需要做的是将内容解析为html片段,循环并预加载图像,然后附加内容

// this contains the content we want to append
var $content = $(data).find('#id').children();
// these are the images that are in content that we need to preload
var $images = $content.find("img").add($content.filter("img"));
// keep track of successfully preloaded images
var counter = 0;
// deferred object that will resolve when all images are preloaded
var $def = $.Deferred();
$images.each(function(){
    // if image is already loaded, increment counter and move on.
    if (this.complete || this.readystate === 4) {
        counter++;
        // if all images are preloaded, resolve deferred object
        if (counter === $images.length) $def.resolve();
    }
    else {
        // since the image isn't already preloaded, bind the load event.
        $(this).load(function(){
            counter++;
            // if all images are preloaded, resolve deferred object
            if (counter === $images.length) $def.resolve();
        });
    }
});
// when done preloading, this function will happen.
$def.done(function(){
    // empty target element and append content to it, then animate it.
    $("#id").empty().append($content)
        .animate({
            left: '0'
        }, 'fast');

    var title = $('#id').find('h1').text();
    $('head').find('title').text(title);
});

窗口加载事件只发生一次。您需要做的是将内容解析为html片段,循环并预加载图像,然后附加内容

// this contains the content we want to append
var $content = $(data).find('#id').children();
// these are the images that are in content that we need to preload
var $images = $content.find("img").add($content.filter("img"));
// keep track of successfully preloaded images
var counter = 0;
// deferred object that will resolve when all images are preloaded
var $def = $.Deferred();
$images.each(function(){
    // if image is already loaded, increment counter and move on.
    if (this.complete || this.readystate === 4) {
        counter++;
        // if all images are preloaded, resolve deferred object
        if (counter === $images.length) $def.resolve();
    }
    else {
        // since the image isn't already preloaded, bind the load event.
        $(this).load(function(){
            counter++;
            // if all images are preloaded, resolve deferred object
            if (counter === $images.length) $def.resolve();
        });
    }
});
// when done preloading, this function will happen.
$def.done(function(){
    // empty target element and append content to it, then animate it.
    $("#id").empty().append($content)
        .animate({
            left: '0'
        }, 'fast');

    var title = $('#id').find('h1').text();
    $('head').find('title').text(title);
});

你必须事先知道可能会出现哪些图像。然后,您必须在HTML正文中添加如下内容:

<div id="img-preloader">
  <p>If you're seeing a crapton of images here, that's a bug. Just ignore them.</p>
  <!-- No "display:none" because some browsers completely ignore this then -->
  <img alt='' src="some/image.jpg" />
  <img alt='' src="another_image.png" />
  <img alt='' src="img78236.bmp" />
  <img alt='' src="img046502.jpg" />
  <img alt='' src="DCIM732065230.jpg" />
  <img alt='' src="DCIM478346935.jpg" />
  <!-- all the images here are those that you have to preload -->
</div>
<style type="text/css">
  #img-preloader *{height:0; width:0; opacity:0;}
  #img-preloader {margin-left:-6543467624px;position:absolute;
                  visibility:hidden;height:0;width:0;opacity:0}
</style>

如果你在这里看到大量图片,那就是一个bug。别理他们

#img预加载程序*{高度:0;宽度:0;不透明度:0;} #img预加载程序{左边距:-6543467624px;位置:绝对; 可见性:隐藏;高度:0;宽度:0;不透明度:0}

你只能用你知道会出现在那里的图像来做这件事,因为没有办法预测你应该预加载哪些图像。另外,如果有很多图像,我不建议预加载,因为它会降低初始页面加载速度。

您必须提前知道可能会显示哪些图像。然后,您必须在HTML正文中添加如下内容:

<div id="img-preloader">
  <p>If you're seeing a crapton of images here, that's a bug. Just ignore them.</p>
  <!-- No "display:none" because some browsers completely ignore this then -->
  <img alt='' src="some/image.jpg" />
  <img alt='' src="another_image.png" />
  <img alt='' src="img78236.bmp" />
  <img alt='' src="img046502.jpg" />
  <img alt='' src="DCIM732065230.jpg" />
  <img alt='' src="DCIM478346935.jpg" />
  <!-- all the images here are those that you have to preload -->
</div>
<style type="text/css">
  #img-preloader *{height:0; width:0; opacity:0;}
  #img-preloader {margin-left:-6543467624px;position:absolute;
                  visibility:hidden;height:0;width:0;opacity:0}
</style>

如果你在这里看到大量图片,那就是一个bug。别理他们

#img预加载程序*{高度:0;宽度:0;不透明度:0;} #img预加载程序{左边距:-6543467624px;位置:绝对; 可见性:隐藏;高度:0;宽度:0;不透明度:0}

你只能用你知道会出现在那里的图像来做这件事,因为没有办法预测你应该预加载哪些图像。另外,如果有很多图像,我不建议预加载,因为它会降低初始页面加载速度。

这似乎很有效,如果你能解释一下那里发生了什么,那就太好了?所以我知道,作为将来的参考…这似乎是可行的。如果你能解释一下那里发生了什么,那就太好了?所以我知道以后参考。。。