web-dev-qa-db-ja.com

レスポンシブイメージマップ

レスポンシブHTMLレイアウトに既存のイメージマップがあります。画像はブラウザのサイズに応じて拡大縮小されますが、画像の座標は明らかに固定ピクセルサイズです。イメージマップの座標のサイズを変更するには、どのようなオプションが必要ですか?

122
jdog

レスポンシブ画像マップには、プラグインを使用する必要があります:

https://github.com/stowball/jQuery-rwdImageMaps (メンテナンスされなくなりました)

または

https://github.com/davidjbradshaw/imagemap-resizer


主要なブラウザはパーセンテージ座標を正しく理解しておらず、すべてがパーセンテージ座標をピクセル座標として解釈します。

http://www.howtocreate.co.uk/tutorials/html/imagemaps

また、ブラウザが実装するかどうかをテストするためのこのページ

http://home.comcast.net/~urbanjost/IMG/resizeimg3.html

83
Tom
39

イメージマップの代わりにsvgを使用することもできます。 ;)

これを行う方法 のチュートリアルがあります

.hover_group:hover {
  opacity: 1;
}
#projectsvg {
  position: relative;
  width: 100%;
  padding-bottom: 77%;
  vertical-align: middle;
  margin: 0;
  overflow: hidden;
}
#projectsvg svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
<figure id="projectsvg">
  <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 1080" preserveAspectRatio="xMinYMin meet" >
<!-- set your background image -->
<image width="1920" height="1080" xlink:href="http://placehold.it/1920x1080" />
<g class="hover_group" opacity="0">
  <a xlink:href="https://example.com/link1.html">
    <text x="652" y="706.9" font-size="20">First zone</text>
    <rect x="572" y="324.1" opacity="0.2" fill="#FFFFFF" width="264.6" height="387.8"></rect>
  </a>
</g>
<g class="hover_group" opacity="0">
  <a xlink:href="https://example.com/link2.html">
    <text x="1230.7" y="952" font-size="20">Second zone</text>
    <rect x="1081.7" y="507" opacity="0.2" fill="#FFFFFF" width="390.2" height="450"></rect>
  </a>
</g>
  </svg>
</figure>
34
belgac

イメージマップをまったく使用せず、イメージ上に絶対に配置されるアンカータグを使用するソリューションを見つけました。唯一の欠点は、ホットスポットが長方形でなければならないことですが、プラスは、このソリューションがJavascriptに依存せず、CSSだけに依存することです。アンカーのHTMLコードを生成するために使用できるWebサイトがあります。 http://www.zaneray.com/responsive-image-map/

画像と生成されたアンカータグを比較的配置されたdivタグに配置し、ウィンドウのサイズ変更と携帯電話ですべてが完全に機能しました。

14
Jeffrey Langham

David Bradshawは、この問題を解決する素敵な小さなライブラリを作成しました。 jQueryの有無にかかわらず使用できます。

ここで利用可能: https://github.com/davidjbradshaw/imagemap-resizer

11
Grodriguez

次の方法は私にとって完璧に機能するので、ここに私の完全な実装があります:

<img id="my_image" style="display: none;" src="my.png" width="924" height="330" border="0" usemap="#map" />

<map name="map" id="map">
    <area shape="poly" coords="774,49,810,21,922,130,920,222,894,212,885,156,874,146" href="#mylink" />
    <area shape="poly" coords="649,20,791,157,805,160,809,217,851,214,847,135,709,1,666,3" href="#myotherlink" />
</map>

<script>
$(function(){
    var image_is_loaded = false;
    $("#my_image").on('load',function() {
        $(this).data('width', $(this).attr('width')).data('height', $(this).attr('height'));
        $($(this).attr('usemap')+" area").each(function(){
            $(this).data('coords', $(this).attr('coords'));
        });

        $(this).css('width', '100%').css('height','auto').show();

        image_is_loaded = true;
        $(window).trigger('resize');
    });


    function ratioCoords (coords, ratio) {
        coord_arr = coords.split(",");

        for(i=0; i < coord_arr.length; i++) {
            coord_arr[i] = Math.round(ratio * coord_arr[i]);
        }

        return coord_arr.join(',');
    }
    $(window).on('resize', function(){
        if (image_is_loaded) {
            var img = $("#my_image");
            var ratio = img.width()/img.data('width');

            $(img.attr('usemap')+" area").each(function(){
                console.log('1: '+$(this).attr('coords'));
                $(this).attr('coords', ratioCoords($(this).data('coords'), ratio));
            });
        }
    });
});
</script>
6
chimeraha

以下のリンクを使用してレスポンシブマップ画像を取得できます

window.onload = function () {
    var ImageMap = function (map, img) {
            var n,
                areas = map.getElementsByTagName('area'),
                len = areas.length,
                coords = [],
                previousWidth = 128;
            for (n = 0; n < len; n++) {
                coords[n] = areas[n].coords.split(',');
            }
            this.resize = function () {
                var n, m, clen,
                    x = img.offsetWidth / previousWidth;
                for (n = 0; n < len; n++) {
                    clen = coords[n].length;
                    for (m = 0; m < clen; m++) {
                        coords[n][m] *= x;
                    }
                    areas[n].coords = coords[n].join(',');
                }
                previousWidth = document.body.clientWidth;
                return true;
            };
            window.onresize = this.resize;
        },
        imageMap = new ImageMap(document.getElementById('map_ID'), document.getElementById('img_ID'));
    imageMap.resize();
    return;
}
<div style="width:100%;">
    <img id="img_ID" src="http://www.gravatar.com/avatar/0865e7bad648eab23c7d4a843144de48?s=128&d=identicon&r=PG" usemap="#map" border="0" width="100%" alt="" />
</div>
<map id="map_ID" name="map">
<area shape="poly" coords="48,10,80,10,65,42" href="javascript:;" alt="Bandcamp" title="Bandcamp" />
<area shape="poly" coords="30,50,62,50,46,82" href="javascript:;" alt="Facebook" title="Facebook" />
<area shape="poly" coords="66,50,98,50,82,82" href="javascript:;" alt="Soundcloud" title="Soundcloud" />
</map>

あなたが長方形のヒットエリアで大丈夫なら、私はこれに対処するための非JSの方法を見つけました。

まず、画像が比較的配置されたdivにあることを確認します。次に、このdiv内に画像を配置します。つまり、div内のすべてのスペースを占有します。最後に、絶対位置にあるdivを画像の下、メインdiv内に追加し、上、左、幅、および高さの割合を使用して、リンクヒット領域を希望するサイズと位置にします。

最初に作業しているときにdivに黒い背景色を付けて(理想的にはアルファフェードを使用して下にリンクされたコンテンツを表示する)、ブラウザーのコードインスペクターを使用してリアルタイムで割合を調整するのが最も簡単です、適切に取得できるようにします。

作業できる基本的な概要は次のとおりです。パーセンテージですべてを行うことにより、画像が拡大縮小しても要素がすべて同じ相対的なサイズと位置を維持するようにします。

<div style="position: relative;">
  <img src="background-image.png" style="width: 100%; height: auto;">
  <a href="/link1"><div style="position: absolute; left: 15%; top: 20%; width: 12%; height: 8%; background-color: rgba(0, 0, 0, .25);"></div></a>
  <a href="/link2"><div style="position: absolute; left: 52%; top: 38%; width: 14%; height: 20%; background-color: rgba(0, 0, 0, .25);"></div></a>
</div>

このコードをChromeのコードインスペクターまたは任意のブラウザーで使用し、ボックスが適切になるまでパーセンテージを調整します(より正確には10進数のパーセンテージを使用できます)。また、ヒット領域を非表示にしたいので、使用する準備ができたら、transparentbackground-colorを選択します。

3
Tom Bisciglia

私のために働いています(コードの3つのことを忘れないでください):

  • previousWidth(画像の元のサイズ)

  • map_ID(イメージマップのID)

  • img_ID(画像のID)

HTML:

<div style="width:100%;">
    <img id="img_ID" src="http://www.gravatar.com/avatar/0865e7bad648eab23c7d4a843144de48?s=128&d=identicon&r=PG" usemap="#map" border="0" width="100%" alt="" />
</div>
<map id="map_ID" name="map">
<area shape="poly" coords="48,10,80,10,65,42" href="javascript:;" alt="Bandcamp" title="Bandcamp" />
<area shape="poly" coords="30,50,62,50,46,82" href="javascript:;" alt="Facebook" title="Facebook" />
<area shape="poly" coords="66,50,98,50,82,82" href="javascript:;" alt="Soundcloud" title="Soundcloud" />
</map>

Javascript:

window.onload = function () {
    var ImageMap = function (map, img) {
            var n,
                areas = map.getElementsByTagName('area'),
                len = areas.length,
                coords = [],
                previousWidth = 128;
            for (n = 0; n < len; n++) {
                coords[n] = areas[n].coords.split(',');
            }
            this.resize = function () {
                var n, m, clen,
                    x = img.offsetWidth / previousWidth;
                for (n = 0; n < len; n++) {
                    clen = coords[n].length;
                    for (m = 0; m < clen; m++) {
                        coords[n][m] *= x;
                    }
                    areas[n].coords = coords[n].join(',');
                }
                previousWidth = img.offsetWidth;
                return true;
            };
            window.onresize = this.resize;
        },
        imageMap = new ImageMap(document.getElementById('map_ID'), document.getElementById('img_ID'));
    imageMap.resize();
    return;
}

JSFiddle: http://jsfiddle.net/p7EyT/154/

3
Niente0

同じ画面サイズでサイズを変更できるレスポンシブなイメージマップを表示したいので、その座標を強調したい

そこで、画面サイズとイベントに応じて座標のサイズを変更できる多くのライブラリを試しました。そして、ほぼすべてのブラウザーで正常に動作する最良のソリューション(jquery.imagemapster.min.js)を得ました。また、イメージマップを作成する Summer Plgin と統合しました。

 var resizeTime = 100;
 var resizeDelay = 100;    

$('img').mapster({
        areas: [
            {
                key: 'tbl',
                fillColor: 'ff0000',
                staticState: true,
                stroke: true
            }
        ],
        mapKey: 'state'
    });

    // Resize the map to fit within the boundaries provided

    function resize(maxWidth, maxHeight) {
        var image = $('img'),
            imgWidth = image.width(),
            imgHeight = image.height(),
            newWidth = 0,
            newHeight = 0;

        if (imgWidth / maxWidth > imgHeight / maxHeight) {
            newWidth = maxWidth;
        } else {
            newHeight = maxHeight;
        }
        image.mapster('resize', newWidth, newHeight, resizeTime);
    }

    function onWindowResize() {

        var curWidth = $(window).width(),
            curHeight = $(window).height(),
            checking = false;
        if (checking) {
            return;
        }
        checking = true;
        window.setTimeout(function () {
            var newWidth = $(window).width(),
                newHeight = $(window).height();
            if (newWidth === curWidth &&
                newHeight === curHeight) {
                resize(newWidth, newHeight);
            }
            checking = false;
        }, resizeDelay);
    }

    $(window).bind('resize', onWindowResize);
img[usemap] {
        border: none;
        height: auto;
        max-width: 100%;
        width: auto;
    }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.imagemapster.min.js"></script>

<img src="https://discover.luxury/wp-content/uploads/2016/11/Cities-With-the-Most-Michelin-Star-Restaurants-1024x581.jpg" alt="" usemap="#map" />
<map name="map">
    <area shape="poly" coords="777, 219, 707, 309, 750, 395, 847, 431, 916, 378, 923, 295, 870, 220" href="#" alt="poly" title="Polygon" data-maphilight='' state="tbl"/>
    <area shape="circle" coords="548, 317, 72" href="#" alt="circle" title="Circle" data-maphilight='' state="tbl"/>
    <area shape="rect" coords="182, 283, 398, 385" href="#" alt="rect" title="Rectangle" data-maphilight='' state="tbl"/>
</map>

誰かにそれを助けることを願っています。

2
Rahul Mahadik

http://home.comcast.net/~urbanjost/semaphore.html はディスカッションのトップページであり、実際には問題に対するJavaScriptベースのソリューションへのリンクがあります。 HTMLは将来パーセント単位をサポートするという通知を受け取りましたが、これについてはかなり長い間進展が見られませんでした(おそらくサポートが来ると聞いてから1年以上経っています)。 JavaScript/ECMAScriptに慣れている場合は、おそらく検討する価値があります。

2
John Urban

それは、jQueryを使用して範囲を比例的に調整できるかどうかに依存します。なぜイメージマップを使用するのですか?スケーリングdivやその他の要素を使用できませんか?

1
Reinier Kaper

Githubの image-map プラグインをご覧ください。 Vanilla JavaScriptとjQueryプラグインの両方で機能します。

$('img[usemap]').imageMap();     // jQuery

ImageMap('img[usemap]')          // JavaScript

デモ を確認してください。

1
Travis Clarke

JavaScriptに頼りたくない人のために、画像スライスの例を示します。

http://codepen.io/anon/pen/cbzrK

ウィンドウを拡大縮小すると、それに応じて道化師の画像が拡大縮小され、拡大すると、道化師の鼻がハイパーリンクされたままになります。

1
Johnny Oshika

何らかの理由で、これらのソリューションはどれも私にとってはうまくいきませんでした。トランスフォームを使用して最高の成功を収めました。

transform: translateX(-5.8%) translateY(-5%) scale(0.884);
0
Mike Furlender

レスポンシブな幅と高さ

window.onload = function () {
        var ImageMap = function (map, img) {
                var n,
                    areas = map.getElementsByTagName('area'),
                    len = areas.length,
                    coords = [],
                    imgWidth = img.naturalWidth,
                    imgHeight = img.naturalHeight;
                for (n = 0; n < len; n++) {
                    coords[n] = areas[n].coords.split(',');
                }
            this.resize = function () {
                var n, m, clen,
                    x = img.offsetWidth / imgWidth,
                    y = img.offsetHeight / imgHeight;
                    imgWidth = img.offsetWidth;
                    imgHeight = img.offsetHeight;
                for (n = 0; n < len; n++) {
                    clen = coords[n].length;
                    for (m = 0; m < clen; m +=2) {
                        coords[n][m] *= x;
                        coords[n][m+1] *= y;
                    }
                    areas[n].coords = coords[n].join(',');
                }
                    return true;
                };
                window.onresize = this.resize;
            },
        imageMap = new ImageMap(document.getElementById('map_region'), document.getElementById('prepay_region'));
        imageMap.resize();
        return;
    }

ここでのオーランドの答えに似ています: https://stackoverflow.com/a/32870380/462781

ここでクリスのコードと組み合わせて: https://stackoverflow.com/a/12121309/462781

領域がグリッドに収まる場合は、アスペクト比を維持する%の幅を使用して、透明な画像で領域をオーバーレイできます。

    .wrapperspace {
      width: 100%;
      display: inline-block;
      position: relative;
    }
    .mainspace {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
    }
<div class="wrapperspace">
 <img style="float: left;" title="" src="background-image.png" width="100%" />
 <div class="mainspace">
     <div>
         <img src="space-top.png" style="margin-left:6%;width:15%;"/>
     </div>
     <div>
       <a href="http://www.example.com"><img src="space-company.png" style="margin-left:6%;width:15%;"></a>
     </div>
  <div>
   <a href="http://www.example.com"><img src="space-company.png" style="margin-left:6%;width:10%;"></a>
   <a href="http://www.example.com"><img src="space-company.png" style="width:20%;"></a>
  </div>
 </div>
</div>

%でマージンを使用できます。さらに、第3レベルのdiv内で「スペース」画像を隣り合わせに配置できます。

0
Pete