kindeditor編輯器添加video標(biāo)簽

kindeditor編輯器添加H5video標(biāo)簽

最近有需求羡棵,要添加上傳h5視頻功能,因?yàn)閏hrome和移動(dòng)端不支持播放flash視頻

在網(wǎng)上找了相關(guān)信息昵观,許多都是亂碼的晾腔。所以我整理了舌稀,重新再發(fā)一份相關(guān)的吧。

開(kāi)始

kindeditor\plugins 目錄下新建目錄 htmlfvideo ,新建 htmlfvideo.js

** htmlfvideo.js **

  KindEditor.plugin('htmlfvideo', function (K) {
  var self = this,
    name = 'htmlfvideo',
    lang = self.lang(name + '.'),
    allowHtml5VideoUpload = K.undef(self.allowHtml5VideoUpload, true),
    allowFileManager = K.undef(self.allowFileManager, false),
    formatUploadUrl = K.undef(self.formatUploadUrl, true),
    extraParams = K.undef(self.extraFileUploadParams, {}),
    filePostName = K.undef(self.filePostName, 'imgFile'),
    uploadJson = K.undef(self.uploadJson, self.basePath + 'php/upload_json.php ');
  self.plugin.htmlfvideo = {
    edit: function () {
      var html = [
        '<div style="padding:20px;">',
        //url 
        '<div class="ke-dialog-row">',
        '<label for="keUrl" style="width:60px;">' + lang.url + '</label>',
        '<input class="ke-input-text" type="text" id="keUrl" name="url" va lue="" style="width:160px;" /> &nbsp;',
        '<input type="button" class="ke-upload-button" value="' + lang.upload + '" /> &nbsp;',
        '<span class="ke-button-common ke-button-outer">',
        '<input type="button" class="ke-button-common ke-button" name="vie wServer" value="' + lang.viewServer + '" />',
        '</span>',
        '</div>',
        //width 
        '<div class="ke-dialog-row">', '<label for="keWidth" style="width:60px;">' + lang.width + '</labe l>',
        '<input type="text" id="keWidth" class="ke-input-text ke-input-num ber" name="width" value="550" maxlength="4" />', '</div>',
        //height 
        '<div class="ke-dialog-row">', '<label for="keHeight" style="width:60px;">' + lang.height + '</la bel>',
        '<input type="text" id="keHeight" class="ke-input-text ke-input-nu mber" name="height" value="400" maxlength="4" />', '</div>',
        //autostart 
        '<div class="ke-dialog-row">', '<label for="keAutostart">' + lang.autostart + '</label>', '<input type="checkbox" id="keAutostart" name="autoplay" value="" /> ', '</div>', '<div class="ke-dialog-row">',

        '<label for="atention">注意:</label>',
        '只支持mp4格式視頻,轉(zhuǎn)碼工具<a href="http://www.pcfreetime.com/CN/dow nload.html">下載</a>,查看<a href="/lib/document/videoAttention.docx">操作說(shuō)明</a>', '</div>', '</div>'
      ].join('');
      var dialog = self.createDialog({
          name: name,
          width: 450,
          height: 230,
          title: self.lang(name),
          body: html,
          yesBtn: {
            name: self.lang('yes'),
            click: function (e) {
              var url = K.trim(urlBox.val()),
                width = widthBox.val(),
                height = heightBox.val();
              if (url == 'http://' || K.invalidUrl(url)) {
                alert(self.lang('invalidUrl'));
                urlBox[0].focus();
                return;
              }
              if (!/^\d*$/.test(width)) {
                alert(self.lang('invalidWidth'));
                widthBox[0].focus();
                return;
              }
              if (!/^\d*$/.test(height)) {
                alert(self.lang('invalidHeight'));
                heightBox[0].focus();
                return;
              }
              var html = K.mediaImg(self.themesPath + 'common/blank.gif', {
                src: url,
                controls: 'controls', //type : K.mediaType(url), 
                width: width,
                height: height,
                autoplay: autostartBox[0].checked ? 'true' : 'false',
                loop: 'true'
              });
              self.insertHtml(html).hideDialog().focus();
            }
          }
        }),

        div = dialog.div,
        urlBox = K('[name="url"]', div),
        
viewServerBtn = K('[name="viewServer"]', div),
        widthBox = K('[name="width"]', div),
        heightBox = K('[name="height"]', div),
        autostartBox = K('[name="autoplay"]', div);
      urlBox.val('http://');

      if (allowHtml5VideoUpload) {
        var uploadbutton = K.uploadbutton({
          button: K('.ke-upload-button', div)[0],
          fieldName: filePostName,
          extraParams: extraParams,
          url: K.addParam(uploadJson, 'dir=htmlfvideo'), //上傳路徑
          afterUpload: function (data) {
            dialog.hideLoading();
            if (data.error === 0) {
              var url = data.url;
              if (formatUploadUrl) {
                url = K.formatUrl(url, 'absolute');
              }
              urlBox.val(url);
              if (self.afterUpload) {
                self.afterUpload.call(self, url, data, name);
              }
              alert(self.lang('uploadSuccess'));
            } else {
              alert(data.message);
            }
          },
          afterError: function (html) {
            dialog.hideLoading();
            self.errorDialog(html);
          }
        });
        uploadbutton.fileBox.change(function (e) {
          dialog.showLoading(self.lang('uploadLoading'));
          uploadbutton.submit();
        });
      } else {
        K('.ke-upload-button', div).hide();
      }

      if (allowFileManager) {
        viewServerBtn.click(function (e) {
          self.loadPlugin('filemanager', function () {
            self.plugin.filemanagerDialog({
              viewType: 'LIST',
              dirName: 'htmlfvideo',
              clickFn: function (url, title) {
                if (self.dialogs.length > 1) {
                  K('[name="url"]', div).val(url);
                  if (self.afterSelectFile) {
                    self.afterSelectFile.call(self, url);
                  }
                  self.hideDialog();
                }
              }
            });
          });
        });
      } else {
        viewServerBtn.hide();
      }

      var img = self.plugin.getSelectedhtmlfvideo();
      if (img) {
        var attrs = K.mediaAttrs(img.attr('data-ke-tag'));
        urlBox.val(attrs.src);
        widthBox.val(K.removeUnit(img.css('width')) || attrs.width || 0);
        heightBox.val(K.removeUnit(img.css('height')) || attrs.height || 0);
        autostartBox[0].checked = (attrs.autoplay === 'true');
      }
      urlBox[0].focus();
      urlBox[0].select();
    },
    'delete': function () {
      self.plugin.getSelectedhtmlfvideo().remove(); // [IE] 刪除圖片后立即點(diǎn)擊圖片按鈕出錯(cuò) 
      self.addBookmark();
    }
  };
  self.clickToolbar(name, self.plugin.htmlfvideo.edit);
});

kindeditor\themes\default 目錄下修改 default.css 灼擂,目的是顯示播放器的圖標(biāo)壁查,圖片在 default.png 里面,有需要可以新增

在 .ke-icon-media 下添加樣式

.ke-icon-htmlfvideo{ 
    background-position:0px -528px; 
    width:16px; 
    height:16px; 
}

kindeditor\lang\zh_CN.js, 加上相關(guān)彈窗信息剔应。

htmlfvideo : 'html5視頻', 
'htmlfvideo.url' : 'URL', 
'htmlfvideo.width' : '寬度', 
'htmlfvideo.height' : '高度', 
'htmlfvideo.upload' : '上傳', 
'htmlfvideo.viewServer' : '文件空間', 
'htmlfvideo.autostart' : '自動(dòng)播放',

kindeditor\php\upload_json.php $ext_arr 變量修改

$ext_arr = array(
    'image' => array('gif', 'jpg', 'jpeg', 'png', 'bmp'),
    'flash' => array('swf', 'flv'),
    'htmlfvideo' => array('mp4','mpg4','ogg', 'WebM'),
    'media' => array('swf', 'flv', 'mp3', 'mp4', 'wav', 'wma', 'wmv', 'mid', 'avi', 'mpg', 'asf', 'rm', 'rmvb'),
    'file' => array('doc', 'docx', 'xls', 'xlsx', 'ppt', 'htm', 'html', 'txt', 'zip', 'rar', 'gz', 'bz2'),
);

kindeditor.js修改

找到 var _INLINE_TAG_MAP = _toMap('a 開(kāi)頭的睡腿,修改為

var _INLINE_TAG_MAP = _toMap('a,abbr,acronym,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,img,input,ins,kbd,label,map,q,s,samp,select,small,span,strike,strong,sub,sup,textarea,tt,u,var,video'),
    _BLOCK_TAG_MAP = _toMap('address,applet,blockquote,body,center,dd,dir,div,dl,dt,fieldset,form,frameset,h1,h2,h3,h4,h5,h6,head,hr,html,iframe,ins,isindex,li,map,menu,meta,noframes,noscript,object,ol,p,pre,script,style,table,tbody,td,tfoot,th,thead,title,tr,ul,video'),
    _SINGLE_TAG_MAP = _toMap('area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed'),
    _STYLE_TAG_MAP = _toMap('b,basefont,big,del,em,font,i,s,small,span,strike,strong,sub,sup,u'),
    _CONTROL_TAG_MAP = _toMap('img,table,input,textarea,button,video'),
    _PRE_TAG_MAP = _toMap('pre,style,script'),
    _NOSPLIT_TAG_MAP = _toMap('html,head,body,td,tr,table,ol,ul,li'),
    _AUTOCLOSE_TAG_MAP = _toMap('colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr'),
    _FILL_ATTR_MAP = _toMap('checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected'),
    _VALUE_TAG_MAP = _toMap('input,button,textarea,select');

根據(jù)教程主要還是在 _INLINE_TAG_MAP , _BLOCK_TAG_MAP, _CONTROL_TAG_MAP里面添加video即可


找到 items : 數(shù)組,添加 video

items : [
        'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
        'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
        'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
        'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
        'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
        'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|','image', 'multiimage',
        'flash', 'media', 'htmlfvideo', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
        'anchor', 'link', 'unlink', '|', 'about'
    ],

items 下方找到 htmlTags : 數(shù)組峻贮, 同樣添加

video: ['src', 'width', 'height', 'loop', 'autoplay', 'controls'],

找到 _mediaType 函數(shù)席怪, 添加條件,

function _mediaType(src) {
    if (/\.(rm|rmvb)(\?|$)/i.test(src)) {
        return 'audio/x-pn-realaudio-plugin';
    }
    if (/\.(swf|flv)(\?|$)/i.test(src)) {
        return 'application/x-shockwave-flash';
    }
    if(/\.(mp4|ogg|mpg4)(\?|$)/i.test(src)){ 
    return "htmlfvideo"; 
  } 
    return 'video/x-ms-asf-plugin';
}

在下方新增函數(shù) _htmlfvideo

function _htmlfvideo(attrs){ 
  var html = '<video ';
   _each(attrs, function(key, val) { 
     html += key + '="' + val + '" '; 
    }); 
    html += '></video>'; 
  return html; 
}

同樣 _mediaImg 函數(shù)同樣新增判斷條件

function _mediaImg(blankPath, attrs) {
    var width = attrs.width,
        height = attrs.height,
        type = attrs.type || _mediaType(attrs.src),
        srcTag = _mediaEmbed(attrs),
        style = '';
    if(type == "htmlfvideo"){ 
    srcTag = _htmlfvideo(attrs); 
  }
    if (/\D/.test(width)) {
        style += 'width:' + width + ';';
    } else if (width > 0) {
        style += 'width:' + width + 'px;';
    }
    if (/\D/.test(height)) {
        style += 'height:' + height + ';';
    } else if (height > 0) {
        style += 'height:' + height + 'px;';
    }
    var html = '<img class="' + _mediaClass(type) + '" src="' + blankPath + '" ';
    if (style !== '') {
        html += 'style="' + style + '" ';
    }
    html += 'data-ke-tag="' + escape(srcTag) + '" alt="" />';
    return html;
}

找到 K.mediaEmbed = _mediaEmbed;, 添加K.htmlfvideo = _htmlfvideo;方法纤控。


找到 img.ke-flash , 下方新增

'img.ke-htmlfvideo {',
  ' border:1px solid #AAA;',
  ' background-image:url(' + themesPath + 'common/media.gif);',
  ' background-position:center center;',
  ' background-repeat:no-repeat;',
  ' width:100px;',
  ' height:100px;',
  '}',

找到 self.plugin.getSelectedLink , 下方新增

self.plugin.getSelectedhtmlfvideo = function() { 
  return _getImageFromRange(self.edit.cmd.range, function(img) { 
    return img[0].className == 'ke-htmlfvideo'|| img[0].className == 'ke-rm'; }); 
};

下方 _each('link,image,flash,media,anchor')' 方法添加 htmlfvideo,即
_each('link,image,flash,media,anchor,htmlfvideo')


找到 .replace(/<img[^>]*class="?ke-(flash|rm|media)"?[^>]*,
新增修改為

.replace(/<img[^>]*class="?ke-(flash|htmlfvideo|rm|media)"?[^>]*>/ig,  function(full) {
  var imgAttrs = _getAttrList(full);
  var styles = _getCssList(imgAttrs.style || '');
  var attrs = _mediaAttrs(imgAttrs['data-ke-tag']);
  var width = _undef(styles.width, '');
  var height = _undef(styles.height, '');
  if (/px/i.test(width)) {
    width = _removeUnit(width);
  }
  if (/px/i.test(height)) {
    height = _removeUnit(height);
  }
  attrs.width = _undef(imgAttrs.width, width);
  attrs.height = _undef(imgAttrs.height, height);
  if (imgAttrs.class == "ke-htmlfvideo") {
    return _htmlfvideo(attrs);
  } else {
    return _mediaEmbed(attrs);
  }
})
.replace(/<video[^>]*src="([^"]+)"[^>]*>(?:<\/video>)?/ig, function(full) {
  var attrs = _getAttrList(full);
  attrs.src = _undef(attrs.src, '');
  attrs.width = _undef(attrs.width, 0);
  attrs.height = _undef(attrs.height, 0);
  return _mediaImg(self.themesPath + 'common/blank.gif', attrs);
})

demo鏈接

github鏈接

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末挂捻,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子船万,更是在濱河造成了極大的恐慌刻撒,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件耿导,死亡現(xiàn)場(chǎng)離奇詭異声怔,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)舱呻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)醋火,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人箱吕,你說(shuō)我怎么就攤上這事芥驳。” “怎么了茬高?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵晚树,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我雅采,道長(zhǎng)爵憎,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任婚瓜,我火速辦了婚禮宝鼓,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘巴刻。我一直安慰自己愚铡,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著沥寥,像睡著了一般碍舍。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上邑雅,一...
    開(kāi)封第一講書(shū)人閱讀 49,111評(píng)論 1 285
  • 那天片橡,我揣著相機(jī)與錄音,去河邊找鬼淮野。 笑死捧书,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的骤星。 我是一名探鬼主播经瓷,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼洞难!你這毒婦竟也來(lái)了舆吮?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤队贱,失蹤者是張志新(化名)和其女友劉穎歪泳,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體露筒,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年敌卓,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了慎式。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡趟径,死狀恐怖瘪吏,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情蜗巧,我是刑警寧澤掌眠,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站幕屹,受9級(jí)特大地震影響蓝丙,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜望拖,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一渺尘、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧说敏,春花似錦鸥跟、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)枫匾。三九已至,卻和暖如春拟淮,著一層夾襖步出監(jiān)牢的瞬間干茉,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工惩歉, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留等脂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓撑蚌,卻偏偏與公主長(zhǎng)得像上遥,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子争涌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345