gpt4 book ai didi

javascript - 通过鼠标调整图像大小

转载 作者:行者123 更新时间:2023-11-28 14:00:58 25 4
gpt4 key购买 nike

是否有任何 jquery 或其他品牌的插件可以使用鼠标调整 div 内图像的大小?我浏览了 Jquery drug 和 drop 插件,但还没有找到合适的东西。

最佳答案

很容易自己创建,无需使用整个 jQ UI 库。这是一个入门盘:

var isDragging = false,
$img = $('#myImg');

$img.bind('mousedown', function(e){
isDragging = true;
e.preventDefault();
});
$('body').bind('mousemove', function(e){
if(isDragging)
$img.css({ left: e.pageX, top: e.pageY });
}).bind('mouseup', function(){
isDragging = false;
});

关于javascript - 通过鼠标调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5179423/

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