所見即所得的富文本編輯器bootstrap-wysiwyg使用方法詳解

字號:


    這篇文章主要為大家分享一款所見即所得的富文本編輯器bootstrap-wysiwyg,并詳細告訴大家文本編輯器bootstrap-wysiwyg的使用方法,感興趣的小伙伴們可以參考一下
    本文教大家如何使用bootstrap-wysiwyg文本編輯器,充分發(fā)揮編輯器的優(yōu)勢,希望大家可以有所收獲。
    名單
    主要特性:
    超小5kb
    自動的熱鍵支持(MAC和windows)
    拖放的插入圖片,支持圖片上傳(支持手機拍照)
    支持聲音輸入(chrome支持)
    允許自定義的工具條,可以使用所有的bootstrap內(nèi)容,字體不使用任何強制的樣式
    …………………………
    其實不止這些,需要大家自己去探索,加油吧!
    使用其實很簡單的,倒入bootstrap相關(guān)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 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>
    定義相關(guān)菜單項目屬性和方法:
    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">
     輸入內(nèi)容…
    </div>
    如果大家還想深入學(xué)習(xí),可以點擊這里進行學(xué)習(xí),再為大家附一個精彩的專題:Bootstrap學(xué)習(xí)教程
    以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助