gpt4 book ai didi

javascript - 如何将图像放大 120%、150% 和 180%?

转载 作者:行者123 更新时间:2023-11-30 12:12:15 25 4
gpt4 key购买 nike

感谢您阅读我的文章。

我正在使用 Magnific Popup - 缩放功能。我想知道如何设置缩放百分比,以及如何通过单击弹出图像进行 3 种不同程度的放大。

只想澄清我的障碍:例如,我想点击放大的弹出图像,然后放大到 120%,第二次点击,放大到 150%,第三次,放大到 180%,然后第四次,将缩小回来到 100%。

有人知道怎么做吗?如果是,那对我有很大帮助。非常感谢!

原代码(有效):


$('#img').magnificPopup({
delegate: 'a',
type: 'image',
callbacks: {
open: function() {
$(".mfp-figure figure").css("cursor", "zoom-in");
$(".mfp-figure figure").zoom({
on: "click",
onZoomIn: function () {
$(this).css("cursor", "zoom-out");
},
onZoomOut: function () {
$(this).css("cursor", "zoom-in");
}
});
},
close: function() {
// Will fire when popup is closed
}
// e.t.c.
}
});

我的代码(没用):


$('#img').magnificPopup({
delegate: 'a',
type: 'image',
callbacks: {
open: function() {
$(".mfp-figure figure").css("cursor", "zoom-in");
$(".mfp-figure figure").zoom({
on: "click",
onZoomIn: function () {
$(this).zoom({
on: "click",
onZoomIn: function(){
},
onZoomOut: function(){
}
});
$(this).css("cursor", "zoom-out");
},
onZoomOut: function () {
$(this).css("cursor", "zoom-in");
}
});
},
close: function() {
// Will fire when popup is closed
}
// e.t.c.
}
});

最佳答案

最后我放弃了Magnifier Popup-zoom功能,取而代之的是css-zoom功能。

解决方法:


`var zoom_percent = "100";
function zoom(zoom_percent){
$(".mfp-figure figure").click(function(){
switch(zoom_percent){
case "100":
zoom_percent = "120";
break;
case "120":
zoom_percent = "150";
break;
case "150":
zoom_percent = "200";
$(".mfp-figure figure").css("cursor", "zoom-out");
break;
case "200":
zoom_percent = "100";
$(".mfp-figure figure").css("cursor", "zoom-in");
break;
}
$(this).css("zoom", zoom_percent+"%");
});
}

$('#img').magnificPopup({
delegate: 'a',
type: 'image',
callbacks: {
open: function() {
$(".mfp-figure figure").css("cursor", "zoom-in");
zoom(zoom_percent);
},
close: function() {
// Will fire when popup is closed
}
// e.t.c.
}

});`

希望这对也在寻找它的人有所帮助。

关于javascript - 如何将图像放大 120%、150% 和 180%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33431471/

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