Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Gadget-responsiveimagemap.js: Difference between revisions

MediaWiki interface page
Try to fix it
Tag: Reverted
Undo revision 3871 by Bog (talk)
Tag: Undo
Line 65: Line 65:
}
}


var wOriginal = w,  // Save original width
var wPercent = $that.width()/100,
hOriginal = h;  // Save original height
hPercent = $that.height()/100,
 
map = $that.attr('usemap').replace('#', ''),
// Get current width and height of the scaled image
var wCurrent = $that.width(),
hCurrent = $that.height();
 
var wPercent = wCurrent / wOriginal;
var hPercent = hCurrent / hOriginal;
 
var map = $that.attr('usemap').replace('#', ''),
c = 'coords';
c = 'coords';


// Adjust coords for all areas in the image map
// The ImageMap MediaWiki extension uses the same map name for
// identical maps on different images (probably the result of
// a hash function). As such, the manipulation must be limited
// not only by the map name but also to only sibling map
$that.siblings('map[name="' + map + '"]').find('area').each(function() {
$that.siblings('map[name="' + map + '"]').find('area').each(function() {
var $this = $(this);
var $this = $(this);
Line 87: Line 82:
coordsPercent = new Array(coords.length);
coordsPercent = new Array(coords.length);


// Scale the coordinates based on the current image size
for (var i = 0; i < coordsPercent.length; ++i) {
for (var i = 0; i < coordsPercent.length; ++i) {
if (i % 2 === 0) // X-coordinates
if (i % 2 === 0)
coordsPercent[i] = parseInt(((coords[i] / wOriginal) * wCurrent));
coordsPercent[i] = parseInt(((coords[i]/w)*100)*wPercent);
else // Y-coordinates
else
coordsPercent[i] = parseInt(((coords[i] / hOriginal) * hCurrent));
coordsPercent[i] = parseInt(((coords[i]/h)*100)*hPercent);
}
}
$this.attr(c, coordsPercent.toString());
$this.attr(c, coordsPercent.toString());

Revision as of 18:32, 27 May 2025

/*
* rwdImageMaps jQuery plugin v1.6
*
* Allows image maps to be used in a responsive design by recalculating the area coordinates to match the actual image size on load and window.resize
*
* Copyright (c) 2016 Matt Stow
* https://github.com/stowball/jQuery-rwdImageMaps
* http://mattstow.com
* Licensed under the MIT license
*
*
* Modified by HumansCanWinElves to fit better for Fandom wikis
*
*/

/*
	The MIT License (MIT)
	
	Copyright (c) 2016 Matt Stow
	
	Permission is hereby granted, free of charge, to any person obtaining a copy of
	this software and associated documentation files (the "Software"), to deal in
	the Software without restriction, including without limitation the rights to
	use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
	the Software, and to permit persons to whom the Software is furnished to do so,
	subject to the following conditions:
	
	The above copyright notice and this permission notice shall be included in all
	copies or substantial portions of the Software.
	
	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
	IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
	FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
	COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
	IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
	CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

;(function(window, $, mw) {
	if (window.responsiveImageMapLoaded) return;
	window.responsiveImageMapLoaded = true;
	
	function rwdImageMap($img) {
		$img.each(function() {
			if (typeof($(this).attr('usemap')) == 'undefined')
				return;

			var that = this,
				$that = $(that);

			// Since WebKit doesn't know the height until after the image has loaded, perform everything in an onload copy
			$('<img />').on('load', function() {
				var attrW = 'width',
					attrH = 'height',
					w = $that.attr(attrW),
					h = $that.attr(attrH);

				if (!w || !h) {
					var temp = new Image();
					temp.src = $that.attr('src');
					if (!w)
						w = temp.width;
					if (!h)
						h = temp.height;
				}

				var wPercent = $that.width()/100,
					hPercent = $that.height()/100,
					map = $that.attr('usemap').replace('#', ''),
					c = 'coords';

				// The ImageMap MediaWiki extension uses the same map name for
				// identical maps on different images (probably the result of
				// a hash function). As such, the manipulation must be limited
				// not only by the map name but also to only sibling map
				$that.siblings('map[name="' + map + '"]').find('area').each(function() {
					var $this = $(this);
					if (!$this.data(c))
						$this.data(c, $this.attr(c));

					var coords = $this.data(c).split(','),
						coordsPercent = new Array(coords.length);

					for (var i = 0; i < coordsPercent.length; ++i) {
						if (i % 2 === 0)
							coordsPercent[i] = parseInt(((coords[i]/w)*100)*wPercent);
						else
							coordsPercent[i] = parseInt(((coords[i]/h)*100)*hPercent);
					}
					$this.attr(c, coordsPercent.toString());
				});
			}).attr('src', $that.attr('src'));
		});
	}

	mw.hook('wikipage.content').add(function($e) {
	    var $img =
		    $e.find('.responsive-imagemap .noresize:not(.made-responsive)').css({
		        'width': '',
		        'height': ''
		    })
		    .addClass('made-responsive')
		    .find('img[usemap]');
		rwdImageMap($img);
	});
	
	$(window).resize(function() {
		rwdImageMap($('.responsive-imagemap .made-responsive img[usemap]'));
	});

})(this, jQuery, mediaWiki);
Cookies help us deliver our services. By using our services, you agree to our use of cookies.