0

正如您在下面的附件中看到的,某些选项按钮未正确显示。一些按钮缺少文本/图标,但是它们可以正常工作。

在此处输入图像描述

我在网页中实现了它,而不是在空白页面上。会不会是 CSS 干扰?

建议?

该插件可在此处获得 https://github.com/orthes/medium-editor

4

2 回答 2

0

I see, that you downloaded the editor, from my old fork, not from official repo here: https://github.com/daviferreira/medium-editor

Try to download it from there, and see if it helps.

于 2014-04-08T14:45:17.690 回答
0

根据最新版本的回购,这应该不再是一个问题。

如果它仍然是一个问题,可以通过运行一个小型节点服务器来提供演示页面而不是直接导航到浏览器中的文件路径来解决。

如果您从github克隆最新版本的 repo,只需导航到根目录并运行以下命令:

npm install
node index.js

npm install 将安装所有基本的开发依赖项,包括connectserve-static. 这 2 个库用于创建一个简单的静态 Web 服务器,当您运行时调用它index.js

您可以导航到http://localhost:8088/demo/index.html,您现在应该能够访问所有演示,并且工具栏图标应该正确显示。

于 2017-02-10T08:47:55.287 回答