从外部 Jquery 处理程序调整图像大小
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您说在 jQuery 中调整图像大小时,您的意思是仅在视觉上吗?如果是的话,为什么不直接更新图像高度和宽度的 css 值呢?因此,在更改时,使用适当的值更新大小,例如:
如果您想调整文件中此图像的大小,请查看 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:
If you want to then resize this image on file, look into PHP image GD functions.