
Hallo.js是一个简单的富文本Web编辑器,基于jQuery UI并且利用HTML5的contentEditable实现所见即所得。其目标并不是取代当今非常流行的编辑器,如 TinyMCE 或 Aloha Editor,而是给开发者提供一种更简单、更愉快的用户编辑体验。
Hallo.js是由Henri Bergius为IKS项目开发的一款免费软件,使用CoffeeScript开发,遵循MIT许可协议,托管在GitHub上。
使用方法
1、你需要将jQuery、jQuery UI和Rangy库引入到你的项目中:
<script src="js/jquery.min.js"></script><script src="js/jquery-ui.min.js"></script><script src="js/rangy-core.js"></script>编辑器工具栏使用jQuery UI的主题,因此你可能还想自定义一个主题,适合你的需要。工具栏图标字体基于Font Awesome。风格的工具栏出现在演示中,你也会想添加一些CSS(如背景和边框)的类hallotoolbar。
<link rel="stylesheet" href="/path/to/your/jquery-ui.css"><link rel="stylesheet" href="/path/to/your/font-awesome.css">引入Hallo.js
<script src="hallo.js"></script>调用插件是非常简单的
jQuery("p").hallo();你也可以关闭标签的编辑功能
jQuery("p").hallo({editable: false});Hallo自己只能使选择的DOM元素可编辑和不提供任何格式的工具。格式是通过加载插件初始化Hallo。即使简单的事情,如粗体和斜体的插件:jQuery(".editable").hallo({ plugins: {"halloformat": {} }});这个例子可以使简单的格式的插件,提供如粗体和斜体的功能。你可以有很多好的插件为你想,如果有必要通过他们的选择。#Formatting plugin for Hallo#(c) 2011 Henri Bergius, IKS Consortium#Hallo may be freely distributed under the MIT license((jQuery) -> jQuery.widget "IKS.halloformat",boldElement: nulloptions: uuid: "" editable: null_create: -> # Add any actions you want to run on plugin initialization # herepopulateToolbar: (toolbar) -> # Create an element for holding the button @boldElement = jQuery "<span></span>" # Use Hallo Button @boldElement.hallobuttonuuid: @options.uuideditable: @options.editablelabel: "Bold"# Icons come from Font Awesomeicon: "icon-bold"# Commands are used for execCommand and queryCommandStatecommand: "bold" # Append the button to toolbar toolbar.append @boldElementcleanupContentClone: (element) -> # Perform content clean-ups before HTML is sent out)(jQuery)以上就是关于Hallo.js富文本编辑器的详细介绍,希望对大家的学习有所帮助。