JS/jQuery 图像编辑器

发布于 2024-08-22 00:06:37 字数 141 浏览 4 评论 0原文

有没有人偶然发现用纯 JS 或 jQuery 完成的图像编辑器 - 就像 CKEditor 那样?

我正在寻找一段代码,为图像添加句柄,以便您可以根据需要调整其大小,甚至拖动图像。

谢谢。

编辑:改写

has anyone stumbled upon image editor done either in pure JS, or jQuery - that kind like CKEditor has?

I'm looking for piece of code, that adds handles to image, so you can resize it, or even drag image around, as you wish.

Thank you.

Edit: rephrased.

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

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

发布评论

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

评论(4

半暖夏伤 2024-08-29 00:06:37

这是精彩的图像裁剪/调整大小 JQuery 插件 http://www.cropzoom.com.ar/

Here is wonderful image crop/resize JQuery plugin http://www.cropzoom.com.ar/

回眸一遍 2024-08-29 00:06:37

是的,网上有很多。 找到此处。 jCrop 非常出色且非常棒。

Yes there are numerous online. Find here. jCrop is exceptional and awesome.

煞人兵器 2024-08-29 00:06:37

tinyMCE和CKEditor等编辑器的做法是这样的

<div contenteditable="true" id="div1">
    <img src="tache17.jpg" />
</div>
<a href="javascript:alert(document.getElementById('div1').innerHTML)">gimme html</a>

这是浏览器的事情而不是JS的事情。
当然,将图像放置在 div 中并使 div 内容可编辑是使用 JS 完成的,但您所说的调整大小句柄是由浏览器生成的。
注意
除了 Firefox 之外,我还没有在其他任何程序中测试过这个

The way editors such as tinyMCE and CKEditor do it is like this

<div contenteditable="true" id="div1">
    <img src="tache17.jpg" />
</div>
<a href="javascript:alert(document.getElementById('div1').innerHTML)">gimme html</a>

It's a browser thing not a JS thing.
Of course placing the image in the div and making the div contentEditable is done with JS but the resizing handles you are talking about are generated by the browser.
Note
I haven't tested this in anything other than firefox

你曾走过我的故事 2024-08-29 00:06:37

如果您正在寻找 croopzoom 但该网站无法正常工作?
看github-> https://github.com/cropzoom/cropzoom

if you are looking for croopzoom and the website don't work?
look at github -> https://github.com/cropzoom/cropzoom

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