gpt4 book ai didi

javascript - 使用不带变换的宽度和高度在光标位置放大/缩小

转载 作者:行者123 更新时间:2023-11-30 11:27:26 29 4
gpt4 key购买 nike

我正在尝试像此处一样应用 Google map 的放大/缩小 - https://www.google.com/maps/@36.241201,-98.1261798,5.13z?hl=en我无法让它正常工作。

我一直在寻找解决方案。但它们都是基于 CSS Tansform 的,我无法使用。

var $image = $('#image');
var container_height = $('#container').height();
var container_width = $('#container').width();

$image.width(container_width);

$('#container').on('click', function(e){
var zoom = 100;
e.preventDefault();
var this_offset = $(this).offset();
var click_x = e.pageX - this_offset.left;
var click_y = e.pageY - this_offset.top;

var image_height = $image.height();
var image_width = $image.width();

$image.css({
'width' : image_width + zoom,
'height' : image_height + zoom,
'top': -click_y,
'left': -click_x,
});
});
.container{
margin: 15px auto;
position:relative;
width:400px;
height: 300px;
border: 2px solid #fff;
overflow:hidden;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.image{
position:absolute;
transition:all 0.25s ease-in-out;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container" id="container">
<img src="https://i.imgur.com/sEUlGOw.jpg" id="image" class="image" />
</div>

请帮助。谢谢

最佳答案

首先,请将缩放用作倍增因子。因此,对于 200% 缩放,将值设置为 2。要缩小到一半大小,请将值设置为 0.5

我没有使用 pageXpageY,而是使用了 offsetXoffsetY找到被点击的像素的 x, y 坐标。 (请注意兼容性)。

为了在容器中找到图像的左侧和顶部,我使用了 offsetLeftoffsetTop .

(function () {
var $image = $('#image');

var container_width = $('#container').width();

$image.width(container_width);

$image.on('click', function(e){
var zoom = 1.3; // zoom by multiplying a factor for equal width n height proportions
e.preventDefault();
var click_pixel_x = e.offsetX,
click_pixel_y = e.offsetY;

var image_width = $image.width(),
image_height = $image.height();

var current_img_left = this.offsetLeft,
current_img_top = this.offsetTop;

var new_img_width = image_width * zoom,
//new_img_height = image_height * zoom,
img_left = current_img_left + click_pixel_x - (click_pixel_x * zoom),
img_top = current_img_top + click_pixel_y - (click_pixel_y * zoom);

$image.css({
'width' : new_img_width,
//'height' : new_img_height,
'left': img_left,
'top': img_top
});
});
})(jQuery);
.container{
margin: 15px auto;
position:relative;
width:400px;
height: 300px;
border: 2px solid #fff;
overflow:hidden;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.image{
position:absolute;
left: 0,
top: 0,
transition:all 0.25s ease-in-out;
}
<div class="container" id="container">
<img src="https://i.imgur.com/sEUlGOw.jpg" id="image" class="image" />
</div>

<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

关于javascript - 使用不带变换的宽度和高度在光标位置放大/缩小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47474244/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com