themes-community/transzero/js/jquery.ae.image.resize.min.js
Tobias Diekershoff 7a0bfa1436 added transzero theme by joenepraat
From around 2012

Completely based on Duopuntozero. Modern look with different levels of transparency, rounded corners, a clear focus on the content and more.
You can overwrite background.jpg to have a completely different look. Keep in mind that it must have a resolution of at least 1920x1080 (for wide screens).

This theme is not finished yet. Keep that in mind. But it is usable.
2023-10-17 08:59:53 +02:00

1 line
538 B
JavaScript

(function(d){d.fn.aeImageResize=function(a){var i=0,j=d.browser.msie&&6==~~d.browser.version;if(!a.height&&!a.width)return this;if(a.height&&a.width)i=a.width/a.height;return this.one("load",function(){this.removeAttribute("height");this.removeAttribute("width");this.style.height=this.style.width="";var e=this.height,f=this.width,g=f/e,b=a.height,c=a.width,h=i;h||(h=b?g+1:g-1);if(b&&e>b||c&&f>c){if(g>h)b=~~(e/f*c);else c=~~(f/e*b);this.height=b;this.width=c}}).each(function(){if(this.complete||j)d(this).trigger("load")})}})(jQuery);