kindeditor编辑器添加video标签

kindeditor编辑器添加H5video标签

最近有需求,要添加上传h5视频功能,因为chrome和移动端不支持播放flash视频

在网上找了相关信息,许多都是乱码的。所以我整理了,重新再发一份相关的吧。

开始

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格式视频,转码工具<a href="http://www.pcfreetime.com/CN/dow nload.html">下载</a>,查看<a href="/lib/document/videoAttention.docx">操作说明</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] 删除图片后立即点击图片按钮出错 
      self.addBookmark();
    }
  };
  self.clickToolbar(name, self.plugin.htmlfvideo.edit);
});

kindeditor\themes\default 目录下修改 default.css ,目的是显示播放器的图标,图片在 default.png 里面,有需要可以新增

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

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

kindeditor\lang\zh_CN.js, 加上相关弹窗信息。

htmlfvideo : 'html5视频', 
'htmlfvideo.url' : 'URL', 
'htmlfvideo.width' : '宽度', 
'htmlfvideo.height' : '高度', 
'htmlfvideo.upload' : '上传', 
'htmlfvideo.viewServer' : '文件空间', 
'htmlfvideo.autostart' : '自动播放',

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 开头的,修改为

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');

根据教程主要还是在 _INLINE_TAG_MAP , _BLOCK_TAG_MAP, _CONTROL_TAG_MAP里面添加video即可


找到 items : 数组,添加 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 : 数组, 同样添加

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

找到 _mediaType 函数, 添加条件,

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';
}

在下方新增函数 _htmlfvideo

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

同样 _mediaImg 函数同样新增判断条件

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链接

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351