簡體   English   中英

如何縮放圖像的中心?

[英]How to zoom on the center of an image?

我想知道如何縮放圖像的中心。

我嘗試了類似imageWrapper.width().left

$(document).on('click', '.process-diagram-zoom-in', function(){
    var div = $(this).parents('.container-fluid:first');
    var imageWrapper = div.find('.image-wrapper');
    imageWrapper.width(imageWrapper.width() * 5.1);
});

顯然,您已經知道如何放大圖像,因此您需要做的是確保圖像在容器中居中。

這可以通過簡單的CSS完成。

對於容器:

position: relative;

對於圖像:

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM