网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 所见即所得的富文本编辑器bootstrap-wysiwyg使用方法详解
内容
    这篇文章主要为大家分享一款所见即所得的富文本编辑器bootstrap-wysiwyg,并详细告诉大家文本编辑器bootstrap-wysiwyg的使用方法,感兴趣的小伙伴们可以参考一下
    本文教大家如何使用bootstrap-wysiwyg文本编辑器,充分发挥编辑器的优势,希望大家可以有所收获。
    名单
    主要特性:
    超小5kb
    自动的热键支持(MAC和windows)
    拖放的插入图片,支持图片上传(支持手机拍照)
    支持声音输入(chrome支持)
    允许自定义的工具条,可以使用所有的bootstrap内容,字体不使用任何强制的样式
    …………………………
    其实不止这些,需要大家自己去探索,加油吧!
    使用其实很简单的,倒入bootstrap相关CSS,JS,jQuery,还有bootstrap-wysiwyg的JS,如下:
    <link href="bootstrap-combined.no-icons.min.css" rel="stylesheet">
    <link href="bootstrap-responsive.min.css" rel="stylesheet">
    <link href="http://netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet">
    <link rel="stylesheet" href="index.css" type="text/css"> </link>
    <script src="jquery1.9.1.min.js" type="text/javascript"></script>
    <script src="bootstrap.min.js"></script>
    <script src="bootstrap-wysiwyg.js" type="text/javascript"></script>
    <script src="external/jquery.hotkeys.js" type="text/javascript"></script>
    定义相关菜单项目属性和方法:
    function initToolbarBootstrapBindings() {
     var fonts = ['Serif', 'Sans', 'Arial', 'Arial Black', 'Courier', 
      'Courier New', 'Comic Sans MS', 'Helvetica', 'Impact', 'Lucida Grande', 'Lucida Sans', 'Tahoma', 'Times',
      'Times New Roman', 'Verdana'],
      fontTarget = $('[title=Font]').siblings('.dropdown-menu');
     $.each(fonts, function (idx, fontName) {
      fontTarget.append($('<li><a data-edit="fontName ' + fontName +'">'+fontName + '</a></li>'));
     });
     $('a[title]').tooltip({container:'body'});
     $('.dropdown-menu input').click(function() {return false;})
     .change(function () {$(this).parent('.dropdown-menu').siblings('.dropdown-toggle').dropdown('toggle');})
     .keydown('esc', function () {this.value='';$(this).change();});
     $('[data-role=magic-overlay]').each(function () { 
     var overlay = $(this), target = $(overlay.data('target')); 
     overlay.css('opacity', 0).css('position', 'absolute').offset(target.offset()).width(target.outerWidth()).height(target.outerHeight());
     });
     if ("onwebkitspeechchange" in document.createElement("input")) {
     var editorOffset = $('#editor').offset();
     $('#voiceBtn').css('position','absolute').offset({top: editorOffset.top, left: editorOffset.left+$('#editor').innerWidth()-35});
     } else {
     $('#voiceBtn').hide();
     }
    };
    function showErrorAlert (reason, detail) {
    var msg='';
    if (reason==='unsupported-file-type') { msg = "Unsupported format " +detail; }
    else {
    console.log("error uploading file", reason, detail);
    }
    $('<div> <button type="button" data-dismiss="alert">×</button>'+ 
    '<strong>File upload error</strong> '+msg+' </div>').prependTo('#alerts');
    };
    initToolbarBootstrapBindings(); 
    $('#editor').wysiwyg({ fileUploadError: showErrorAlert} );
    最后是HTML代码:
    <div data-role="editor-toolbar" data-target="#editor">
     <div>
     <a data-toggle="dropdown"><i></i><b></b></a>
      <ul>
      </ul>
     </div>
     <div>
     <a data-toggle="dropdown"><i></i> <b></b></a>
      <ul>
      <li><a data-edit="fontSize 5"><font size="5">Huge</font></a></li>
      <li><a data-edit="fontSize 3"><font size="3">Normal</font></a></li>
      <li><a data-edit="fontSize 1"><font size="1">Small</font></a></li>
      </ul>
     </div>
     <div>
     <a data-edit="bold"><i></i></a>
     <a data-edit="italic"><i></i></a>
     <a data-edit="strikethrough"><i></i></a>
     <a data-edit="underline"><i></i></a>
     </div>
     <div>
     <a data-edit="insertunorderedlist"><i></i></a>
     <a data-edit="insertorderedlist"><i></i></a>
     <a data-edit="outdent"><i></i></a>
     <a data-edit="indent"><i></i></a>
     </div>
     <div>
     <a data-edit="justifyleft"><i></i></a>
     <a data-edit="justifycenter"><i></i></a>
     <a data-edit="justifyright"><i></i></a>
     <a data-edit="justifyfull"><i></i></a>
     </div>
     <div>
    <a data-toggle="dropdown"><i></i></a>
     <div>
     <input placeholder="URL" type="text" data-edit="createLink"/>
     <button type="button">Add</button>
     </div>
     <a data-edit="unlink"><i></i></a>
     </div>
     <div>
     <a id="pictureBtn"><i></i></a>
     <input type="file" data-role="magic-overlay" data-target="#pictureBtn" data-edit="insertImage" />
     </div>
     <div>
     <a data-edit="undo"><i></i></a>
     <a data-edit="redo"><i></i></a>
     </div>
     <input type="text" data-edit="inserttext" id="voiceBtn" x-webkit-speech="">
    </div>
    <div id="editor">
     输入内容…
    </div>
    如果大家还想深入学习,可以点击这里进行学习,再为大家附一个精彩的专题:Bootstrap学习教程
    以上就是本文的全部内容,希望对大家的学习有所帮助
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/22 13:56:48