构建垂直编辑器有多困难/耗时?

发布于 2024-07-19 13:58:30 字数 446 浏览 2 评论 0原文

此编辑器是水平的 http://tinymce.moxiecode.com/examples/simple.php 我似乎只找到水平编辑器,有人遇到过垂直编辑器吗? 有什么例子吗? 建造需要多长时间?

我的意思是工具栏是水平的,而我想使用垂直的工具栏? (我不是指语言) 我听说这很难做到,

我相信这就是他们面临的问题: http://tinymce.moxiecode.com/punbb/viewtopic.php?id= 13834

this editor is horizontal http://tinymce.moxiecode.com/examples/simple.php
and I seem to find only horizonal editors, has anyone came across a vertical editor? any examples? how long would it take to build?

I mean the toolbar is horizontal and I want to use a vertical one instead? (I don't mean for languages)
I heard it's very difficult to do

I believe this is the problem they have:
http://tinymce.moxiecode.com/punbb/viewtopic.php?id=13834

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

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

发布评论

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

评论(3

方觉久 2024-07-26 13:58:30

采纳 Karsten 的建议,修改 TinyMCE 的布局,使其具有垂直工具栏,谷歌搜索“所见即所得编辑器垂直工具栏”出现TinyMCE 论坛上的此页面:

http://tinymce.moxiecode.com/punbb /viewtopic.php?id=13834

看起来您可以更改 TinyMCE,但是实现垂直工具栏需要进行自定义布局:

http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/theme_advanced_custom_layout

我认为你需要懂 HTML、CSS 的人以及这方面的 JavaScript 技能。 不知道需要多长时间。 有人可能已经这样做了,但是谷歌搜索“tinymce“垂直工具栏”” 仅显示 9 个结果。

Picking up on Karsten’s suggestion to amend TinyMCE’s layout so that it has a vertical toolbar, Googling “wysiwyg editor vertical toolbar” turned up this page on the TinyMCE forums:

http://tinymce.moxiecode.com/punbb/viewtopic.php?id=13834

Looks like you’re allowed to change TinyMCE, but that achieving the vertical toolbar involves doing a custom layout:

http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/theme_advanced_custom_layout

I think you’ll need someone with HTML, CSS and JavaScript skills for this. No idea how long it’d take. Someone might have already done it, but Googling “tinymce "vertical toolbar"” only turns up 9 results.

ぃ弥猫深巷。 2024-07-26 13:58:30

如果它只是工具栏,您可以尝试通过 css 移动它(即使用tinymce)。 我只是忽略了 html 代码,我在那里看到了一个简单的表结构。

If it is only the toolbar, you could try to move it (i.e. with tinymce) via css. I just overlooked the html code and i see a simple table construct there.

三生池水覆流年 2024-07-26 13:58:30

这只是一个文本区域小部件:

<textarea wrap=true rows=10 cols=5>xxx</textarea> 

这将创建一个“垂直”输入区域。

使用 css Overflow:hidden 也会完全删除滚动条。

This is just a text area widget:

<textarea wrap=true rows=10 cols=5>xxx</textarea> 

This would create a "vertical" entry area.

Using the css overflow:hidden will remove the scrollbars entirely as well.

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