最新回答 / aR_Easun
<...code...>//图片预加载_无序加载(function($) { function PreLoad(imgs, options) { this.imgs = (typeof imgs === 'string') ? [imgs] : imgs; this.opts = $.extend({}, PreLoad.DEFAULTS, options); if(this.opts.order === 'ordered') { this._or...
2018-02-08
不懂为何可以这样定义var $progress=$('.progress');?哪位大神可以指教一下,谢谢
2018-02-01
我捋了一下, 所以预加载其实是新创建一个Image对象, 将每一项src对应的图片都下载好, 缓存在本地, 之后的页面再获取图片地址时,就直接从本地拿了, 不需要再发送一次http请求了
2018-01-28
说没明白imgObj.scr = src的那个, imgs被定义为一个数组, 使用each函数遍历imgs这个数组时, 数组内的每一项字符串都是function函数中的src参数, 也就是每遍历一个字符串, 都会new一个Image对象,并把字符串赋值给imgObj对象的src属性
2018-01-28
最新回答 / qq_零_137
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script><script src="js/preload.js"></script>
2018-01-23