201407-03 7款实用的jQuery/HTML5图片应用 1、HTML5 3D衣服摆动特效 超酷HTML5 3D动画 前面我们介绍过很多HTML5 3D动画特效,最经典的要算HTML5 WebGL水面水波荡漾特效。今天我再向大家分享一款HTML5 3D衣服摆动动画特效,动画也是在HTML5 Canvas上完成,它模拟衣服晾在绳子上,点击.... Read More >
201311-05 jQuery自动根据图片高度宽度缩 .fn.ImageAutoSize = function(width,height) { $(“img”,this).each(function() { var image = $(this); if(image.width()>width) { image.width(width); image.height(width/image.width()*image.height()); } i.... Read More >