Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidjbradshaw/image-map-resizer
Responsive HTML Image Maps
https://github.com/davidjbradshaw/image-map-resizer
image-map imagemap jquery resize resizer responsive responsive-image-map responsive-images
Last synced: 1 day ago
JSON representation
Responsive HTML Image Maps
- Host: GitHub
- URL: https://github.com/davidjbradshaw/image-map-resizer
- Owner: davidjbradshaw
- License: mit
- Created: 2014-02-17T12:10:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-09-16T09:35:34.000Z (over 1 year ago)
- Last Synced: 2025-01-24T19:06:51.496Z (9 days ago)
- Topics: image-map, imagemap, jquery, resize, resizer, responsive, responsive-image-map, responsive-images
- Language: JavaScript
- Homepage:
- Size: 197 KB
- Stars: 817
- Watchers: 37
- Forks: 222
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Image Map Resize
[![npm version](https://badge.fury.io/js/image-map-resizer.svg)](http://badge.fury.io/js/image-map-resizer)
![license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
[![Blazing](https://img.shields.io/badge/speed-blazing%20%F0%9F%94%A5-brightgreen.svg?style=flat)](https://twitter.com/acdlite/status/974390255393505280)
[![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.me/davidjbradshaw)*This is a simple library that makes HTML Image Maps responsive, so that they automatically stay scaled to the size of the image they are attached to. It detects the window being resized and updates the co-ordinates of the image map accordingly.*
*This library can be used with or without jQuery.*
### Native JS Usage
Include the [imageMapResizer.min.js](https://raw.github.com/davidjbradshaw/imagemap-resizer/master/js/imageMapResizer.min.js) script then add the following call to the bottom of your page:
```js
imageMapResize();
```Optionally, you can pass a CSS selector that returns a collection of map tags. For example, 'map.myMap' or a direct reference to a map object in the DOM. This function returns an array of map elements that it has been bound to.
### jQuery Usage
Include [jQuery](http://jquery.com) and the [imageMapResizer.min.js](https://raw.github.com/davidjbradshaw/imagemap-resizer/master/js/imageMapResizer.min.js) script and then add the following call to the bottom of your page:
```js
$('map').imageMapResize();
```Or you may want to wrap it in a `$(document).ready()` function:
```js
$(document).ready(function() {
$('map').imageMapResize();
});
```### WordPress
There is a port of this library to WordPress made by @iankevinmcdonald
https://wordpress.org/plugins/add-image-maps/### License
Copyright © 2014-19 [David J. Bradshaw](https://github.com/davidjbradshaw) - Licensed under the [MIT license](http://opensource.org/licenses/MIT)[![NPM](https://nodei.co/npm/image-map-resizer.png)](https://nodei.co/npm/image-map-resizer/)