资 源 简 介
I was trying to use jQuery to simplify my javascript coding work in which I was at serveral times in need of a function to load an image on-demand and do some work afterwords such as resizing and alignment. However I couldn"t find one in the jQuery plugin repository so I tried to write my own as a jQuery learning project. Hopefully it will be also useful for others.
我在开发一个项目的时候,经常需要载入很大的图片,为了避免用户看到页面都是空白块,我需要在载入时显示转动的ajax_load图标 ,并且在载入之后需要进行缩放,居中的操作,于是我写了这个ajax 插件,让这类工作容易一些。。。
使用本插件需要基本的jquery知识,有关这部分请参考jquery官方网站http://www.jquery.com/。
本插件的基本使用方法是:在IMG对象中设置自定义属性,然后通过插件根据属性中的设定将图片载入,详细的属性定义请参考"选项/用法"。
例子代码(这些代码在下载页面都可以找到):
$("#example_img").ajaxLoadImg("./img/ajax-loader.gif");
<div style="width:400px;height:200px">
newWidth=200
newHeight=100
imgAlign="both"
fadeInSpeed=1000
preload=""/>