简体   繁体   中英

How to adjust the top/left/width/height based on the ratio of the resized image,using jquery

How to adjust the top/left/width/height based on the ratio of the resized image,using jquery

I tried

$(window).bind('resize', function() {
    reposition();

    var maxWidth = $(window).width(); // Max width for the image
    var maxHeight = $(window).height();    // Max height for the image

    var ratio = 0;  // Used for aspect ratio
    var width = $(this).width();    // Current image width
    var height = $(this).height();  // Current image height
               / 
    $('.hotspot').each(function() {

        // Check if the current width is larger than the max
        if (width > maxWidth) {
            ratio = maxWidth / width;   // get ratio for scaling image
            $(this).css("width", maxWidth); // Set new width
            $(this).css("height", height * ratio);  // Scale height based on ratio
            height = height * ratio;    // Reset height to match scaled image
            width = width * ratio;    // Reset width to match scaled image
        }

        // Check if current height is larger than max
        if (height > maxHeight) {
            ratio = maxHeight / height; // get ratio for scaling image
            $(this).css("height", maxHeight);   // Set new height
            $(this).css("width", width * ratio);    // Scale width based on ratio
            width = width * ratio;    // Reset width to match scaled image
            height = height * ratio;    // Reset height to match scaled image
        }
    }); 
});

You could use CSS for this and have all your 'hotspots' sized and positioned as percentages.

HTML

<div id="imageWithHotspots">
    <img src="http://placehold.it/400x200&text=hotspots+here+and+here" />
    <a href="#" class="hotspotA" title="Hotspot A"></a>
    <a href="#" class="hotspotB" title="Hotspot B"></a>
</div>

CSS

html, body {margin:0;width:100%; height:100%;}
#imageWithHotspots {width:100%; height:50%;position:relative;}
#imageWithHotspots img {width:100%; height:100%;}
#imageWithHotspots a {
    background:rgba(20,100,100,.5);
    display:block;
    position:absolute;
}
#imageWithHotspots a:hover {
    background:rgba(200,100,10,.5);
}
#imageWithHotspots .hotspotA {
    top:48%;
    left:45.2%;
    height:6.6%;
    width:8.5%;
}
#imageWithHotspots .hotspotB {
    top:48%;
    left:62%;
    height:6.6%;
    width:8.5%;
}

Example JSFiddle

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM