jQuery动态图像调整器函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery动态图像调整器函数相关的知识,希望对你有一定的参考价值。
/** * scaleImage 0.1 * * Rendez vos sites glissant ! * * Copyright (c) 2008 Benoit G (http://www.tim-burton.net) based upon * Licensed under the Creative Commons License: * http://creativecommons.org/licenses/by/3.0/ * * Date: 2008-08-25 */ (function($){ $.fn.scaleImage = function(options) { var defaults = { maxwidth: 200, linkclass:'', icon:true, thickbox:true }; var options = $.extend(defaults, options); return this.each(function() { obj = $(this); var width = obj.width(); var height = obj.height(); if (width > options.maxwidth) { //Set variables for manipulation var ratio = (height / width ); var new_width = options.maxwidth; var new_height = (new_width * ratio); var classes = options.linkclass+' scaleImage'; //thickbox if (options.thickbox == true) { var img_full_link = obj.attr('src'); obj.wrap('<a class="thickbox" title="'+obj.attr('alt')+'" href="'+img_full_link+'"></a>'); tb_init(obj.parent('a')); } //Shrink the image and add link to full-sized image obj.height(new_height).width(new_width); obj.addClass(classes); //zoom icon if (options.icon == true) { obj.after('<div class="thumb-zoom"> </div>'); obj.hover(function(){ $(this).next('.thumb-zoom').addClass("hover"); },function(){ $(this).next('.thumb-zoom').removeClass("hover"); }); } } }); }; })(jQuery);
以上是关于jQuery动态图像调整器函数的主要内容,如果未能解决你的问题,请参考以下文章
使用 javascript/jquery 动态调整画布窗口的大小?