从外部 Jquery 处理程序调整图像大小

发布于 2025-01-08 05:54:56 字数 245 浏览 1 评论 0原文

我尝试使用 jquery UI 创建图像缩放工具。

这是文件:http://jegbagus.com/try/resize.html

当我使用表单调整图像大小,jquery UI 不直接跟随图像调整大小。 如何让这两种方法一起工作。我已经阅读了 jquery UI 文档。但我没有任何线索。

谢谢!

i try to create image resizer tool using jquery UI.

here is the file : http://jegbagus.com/try/resize.html

when i to resize image using form, jquery UI not directly follow image resize.
how to get both of this method work together. i already read the jquery UI docs. but i don't get any clue.

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦途 2025-01-15 05:54:56

当您说在 jQuery 中调整图像大小时,您的意思是仅在视觉上吗?如果是的话,为什么不直接更新图像高度和宽度的 css 值呢?因此,在更改时,使用适当的值更新大小,例如:

 $('img').css('width','200px');
 $('img').css('height','200px');

如果您想调整文件中此图像的大小,请查看 PHP 图像 GD 函数。

When you say resize image in jQuery, do you mean just visually? If yes why not just update the css values for the image height and width? So on change, update size with appropriate values like:

 $('img').css('width','200px');
 $('img').css('height','200px');

If you want to then resize this image on file, look into PHP image GD functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文