搜索延迟加载 jQuery 幻灯片或:hacking cross-slide

Searching for a Lazy Loading jQuery Slideshow or: hacking cross-slide(搜索延迟加载 jQuery 幻灯片或:hacking cross-slide)
本文介绍了搜索延迟加载 jQuery 幻灯片或:hacking cross-slide的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试获取一个 jquery 幻灯片来显示来自 flickr、淡入淡出和滚动的图像.一切正常,除了我真的需要延迟加载图像(只是按需加载图像).

I am trying to get a jquery slideshow to display images from flickr, fading and scrolling. Everything works fine, except I really need Lazy Loading of the images (just loading the images on demand).

我目前正在使用 jquery.cross-slide ( http://tobia.github.com/CrossSlide/ )但不幸的是,tobia 不再在插件上工作,也不想回答问题.

I am currently using jquery.cross-slide ( http://tobia.github.com/CrossSlide/ ) but unfortunately tobia is not working on the plugin anymore and also does not want to answer to questions.

我找到了一个 jquery.cycle 示例,其中应用了图像延迟加载(请参阅 http://malsup.com/jquery/cycle/add3.html )是否有可能将此功能破解到交叉幻灯片的源代码中,或者由于插件的体系结构而无法实现?在这里查看代码:https://github.com/tobia/CrossSlide/blob/master/jquery.cross-slide.js#L131

I found an example of jquery.cycle, where image lazy loading is applied (see http://malsup.com/jquery/cycle/add3.html ) is there any chance of hacking this feature into the source of cross-slide or is it not possible due to the architecture of the plugin? see the code here: https://github.com/tobia/CrossSlide/blob/master/jquery.cross-slide.js#L131

推荐答案

对于寻找延迟加载"图像的幻灯片的其他人,这里有 2 个选项:

For others looking for a slideshow that "lazyloads" images, here are 2 options:

  • http://galleria.aino.se/ - 很棒的幻灯片,有很多选择,但不是很轻量级
  • http://reallysimpleworks.com/slideshow/ - 简单,工作正常.我现在正在使用这个.
  • http://galleria.aino.se/ - great slideshow, lots of options, not really lightweight
  • http://reallysimpleworks.com/slideshow/ - simple, works fine. Im using this one now.

这篇关于搜索延迟加载 jQuery 幻灯片或:hacking cross-slide的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)