您的位置:首页 > 其它

kindeditor web文本编辑器加入video标签(顺便修复一个bug)

2016-02-26 00:00 267 查看
kindeditor是一款web文本编辑器,原始界面不怎么样,如何让这款编辑器支持html5 video标签(似乎目前插入视频用的是flash、embed)?
版本说明4.1.10中文版
找到 项目/kindeditor.js文件,
步骤1,找到htmlTags,添加video标签及不过滤属性(video : [‘src’,’controls’],),
好了,此时就可以在代码模式下进行编辑了,另外,还可以直接ctrl+c,ctrl+v直接黏贴,
步骤2,如果想要用弹出式添加url在线视频地址,请看下面(步骤1必须)
找到item,在item里添加’insertvideo’,
找到insertimage:function(){…},整个复制,在后面黏贴,然后把函数名改为insertinsertvideo,再注释掉部分代码
insertinsertvideo : function(url, title, width, height, border, align) {
title = _undef(title, ”);
border = _undef(border, 0);
var html = ‘<video src=”‘ + _escape(url) + ‘” data-ke-src=”‘ + _escape(url) + ‘” ‘;
// if (width) {
// html += ‘width=”‘ + _escape(width) + ‘” ‘;
// }
// if (height) {
// html += ‘height=”‘ + _escape(height) + ‘” ‘;
// }
// if (title) {
// html += ‘title=”‘ + _escape(title) + ‘” ‘;
// }
// if (align) {
// html += ‘align=”‘ + _escape(align) + ‘” ‘;
// }
// html += ‘alt=”‘ + _escape(title) + ‘” ‘;
html += ‘ controls=”controls”></video><br/>’;
return this.inserthtml(html);
},
找到_each(‘link,image,flash,media,anchor’.split(‘,’), function(i, name) {
改为_each(‘link,image,flash,media,anchor,insertvideo’.split(‘,’), function(i, name) {
找到
self.plugin.getSelectedImage = function() {
return _getImageFromRange(self.edit.cmd.range, function(img) {
return !/^ke-\w+$/i.test(img[0].className);
});
};
在下面添加
self.plugin.getSelectedinsertvideo = function() {
return _getImageFromRange(self.edit.cmd.range, function(img) {
// return !/^ke-\w+$/i.test(img[0].className);
return self.cmd.commonAncestor(‘a’);
});
};
另外说一下,这插件在ie低版本下有个样式bug,因为编辑器为了安全性采用iframe,所以在其他地方无法修改
找到body {margin:0;padding:5px; 在后面加上height:398px;
然后找到 项目/lang/zh_CN.js,
在KindEditor.lang里添加insertvideo : ‘添加视频’,’insertvideo.remoteUrl’ : ‘远程视频地址’,
最后,不要忘记样式,在 项目/themes/default/default.css
添加
.ke-icon-insertvideo {
background-position: 0px -528px;
width: 16px;
height: 16px;
}
这里懒得加图片,直接用原来的图标,也可以自己制作
差点忘了,在项目/plugins下新建文件夹及添加文件insertvideo/insertvideo.js(记得是直接复制image进行修改,细节自己用beyond compare对比或在线对比,以下是修改后的代码)
/*******************************************************************************
* KindEditor – WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/ * @licence http://www.kindsoft.net/license.php *******************************************************************************/
KindEditor.plugin(‘insertvideo’, function(K) {
var self = this, name = ‘insertvideo’,
allowinsertvideoUpload = K.undef(self.allowinsertvideoUpload, false),
allowinsertvideoRemote = K.undef(self.allowinsertvideoRemote, true),
formatUploadUrl = K.undef(self.formatUploadUrl, true),
allowFileManager = K.undef(self.allowFileManager, false),
uploadJson = K.undef(self.uploadJson, self.basePath + ‘php/upload_json.php’),
insertvideoTabIndex = K.undef(self.insertvideoTabIndex, 0),
imgPath = self.pluginsPath + ‘insertvideo/insertvideos/’,
extraParams = K.undef(self.extraFileUploadParams, {}),
filePostName = K.undef(self.filePostName, ‘imgFile’),
fillDescAfterUploadinsertvideo = K.undef(self.fillDescAfterUploadinsertvideo, false),
lang = self.lang(name + ‘.’);
self.plugin.insertvideoDialog = function(options) {
var insertvideoUrl = options.insertvideoUrl,
insertvideoWidth = K.undef(options.insertvideoWidth, ”),
insertvideoHeight = K.undef(options.insertvideoHeight, ”),
insertvideoTitle = K.undef(options.insertvideoTitle, ”),
insertvideoAlign = K.undef(options.insertvideoAlign, ”),
showRemote = K.undef(options.showRemote, true),
showLocal = K.undef(options.showLocal, true),
tabIndex = K.undef(options.tabIndex, 0),
clickFn = options.clickFn;
var target = ‘kindeditor_upload_iframe_’ + new Date().getTime();
var hiddenElements = [];
for(var k in extraParams){
hiddenElements.push(‘<input type=”hidden” name=”‘ + k + ‘” value=”‘ + extraParams[k] + ‘” />’);
}
var html = [
‘<div style=”padding:20px;”>’,
//tabs
‘<div class=”tabs”></div>’,
//remote insertvideo – start
‘<div class=”tab1″ style=”display:none;”>’,
//url
‘<div class=”ke-dialog-row”>’,
‘<label for=”remoteUrl” style=””>’ + lang.remoteUrl + ‘</label>’,
‘<input type=”text” id=”remoteUrl” class=”ke-input-text” name=”url” value=”” style=”width:413px;margin-top:11px;” />  ’,
// ‘<span class=”ke-button-common ke-button-outer”>’,
// ‘<input type=”button” class=”ke-button-common ke-button” name=”viewServer” value=”‘ + lang.viewServer + ‘” />’,
// ‘</span>’,
‘</div>’,
‘<div>’,
‘目前支持格式Ogg、MPEG4、WebM、MP4,如http://mvvideo2.meitudata.com/56091a811aa326355.mp4,您可以选择<a href=”https://portal.qiniu.com/signin” target=”_blank”>七牛云存储</a>上传您的视频,然后把视频外链地址添加到此处。’,
‘</div>’,
//size
// ‘<div class=”ke-dialog-row”>’,
// ‘<label for=”remoteWidth” style=”width:60px;”>’ + lang.size + ‘</label>’,
// lang.width + ‘ <input type=”text” id=”remoteWidth” class=”ke-input-text ke-input-number” name=”width” value=”” maxlength=”4″ /> ‘,
// lang.height + ‘ <input type=”text” class=”ke-input-text ke-input-number” name=”height” value=”” maxlength=”4″ /> ‘,
// ‘<img class=”ke-refresh-btn” src=”‘ + imgPath + ‘refresh.png” width=”16″ height=”16″ alt=”” style=”cursor:pointer;” title=”‘ + lang.resetSize + ‘” />’,
// ‘</div>’,
// //align
// ‘<div class=”ke-dialog-row”>’,
// ‘<label style=”width:60px;”>’ + lang.align + ‘</label>’,
// ‘<input type=”radio” name=”align” class=”ke-inline-block” value=”” checked=”checked” /> <img name=”defaultImg” src=”‘ + imgPath + ‘align_top.gif” width=”23″ height=”25″ alt=”” />’,
// ‘ <input type=”radio” name=”align” class=”ke-inline-block” value=”left” /> <img name=”leftImg” src=”‘ + imgPath + ‘align_left.gif” width=”23″ height=”25″ alt=”” />’,
// ‘ <input type=”radio” name=”align” class=”ke-inline-block” value=”right” /> <img name=”rightImg” src=”‘ + imgPath + ‘align_right.gif” width=”23″ height=”25″ alt=”” />’,
// ‘</div>’,
// //title
// ‘<div class=”ke-dialog-row”>’,
// ‘<label for=”remoteTitle” style=”width:60px;”>’ + lang.imgTitle + ‘</label>’,
// ‘<input type=”text” id=”remoteTitle” class=”ke-input-text” name=”title” value=”” style=”width:200px;” />’,
// ‘</div>’,
// ‘</div>’,
//remote insertvideo – end
//local upload – start
‘<div class=”tab2″ style=”display:none;”>’,
‘<iframe name=”‘ + target + ‘” style=”display:none;”></iframe>’,
‘<form class=”ke-upload-area ke-form” method=”post” enctype=”multipart/form-data” target=”‘ + target + ‘” action=”‘ + K.addParam(uploadJson, ‘dir=insertvideo’) + ‘”>’,
//file
‘<div class=”ke-dialog-row”>’,
hiddenElements.join(”),
‘<label style=”width:60px;”>’ + lang.localUrl + ‘</label>’,
‘<input type=”text” name=”localUrl” class=”ke-input-text” tabindex=”-1″ style=”width:200px;” readonly=”true” />  ’,
‘<input type=”button” class=”ke-upload-button” value=”‘ + lang.upload + ‘” />’,
‘</div>’,
‘</form>’,
‘</div>’,
//local upload – end
‘</div>’
].join(”);
var dialogWidth = showLocal || allowFileManager ? 450 : 400,
dialogHeight = showLocal && showRemote ? 300 : 250;
var dialog = self.createDialog({
name : name,
width : dialogWidth,
height : dialogHeight,
title : self.lang(name),
body : html,
yesBtn : {
name : self.lang(‘yes’),
click : function(e) {
// Bugfix: http://code.google.com/p/kindeditor/issues/detail?id=319 if (dialog.isLoading) {
return;
}
// insert local insertvideo
if (showLocal && showRemote && tabs && tabs.selectedIndex === 1 || !showRemote) {
if (uploadbutton.fileBox.val() == ”) {
alert(self.lang(‘pleaseSelectFile’));
return;
}
dialog.showLoading(self.lang(‘uploadLoading’));
uploadbutton.submit();
localUrlBox.val(”);
return;
}
// insert remote insertvideo
var url = K.trim(urlBox.val()),
// width = widthBox.val(),
// height = heightBox.val(),
// title = titleBox.val(),
width = 10,
height = 10,
title = ‘test’,
align = ”;
alignBox.each(function() {
if (this.checked) {
align = this.value;
return false;
}
});
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;
}
clickFn.call(self, url, title, width, height, 0, align);
}
},
beforeRemove : function() {
viewServerBtn.unbind();
widthBox.unbind();
heightBox.unbind();
refreshBtn.unbind();
}
}),
div = dialog.div;
var urlBox = K(‘[name=”url”]’, div),
localUrlBox = K(‘[name=”localUrl”]’, div),
viewServerBtn = K(‘[name=”viewServer”]’, div),
widthBox = K(‘.tab1 [name=”width”]’, div),
heightBox = K(‘.tab1 [name=”height”]’, div),
refreshBtn = K(‘.ke-refresh-btn’, div),
titleBox = K(‘.tab1 [name=”title”]’, div),
alignBox = K(‘.tab1 [name=”align”]’, div);
var tabs;
if (showRemote && showLocal) {
tabs = K.tabs({
src : K(‘.tabs’, div),
afterSelect : function(i) {}
});
tabs.add({
title : lang.remoteinsertvideo,
panel : K(‘.tab1’, div)
});
tabs.add({
title : lang.localinsertvideo,
panel : K(‘.tab2’, div)
});
tabs.select(tabIndex);
} else if (showRemote) {
K(‘.tab1’, div).show();
} else if (showLocal) {
K(‘.tab2’, div).show();
}
var uploadbutton = K.uploadbutton({
button : K(‘.ke-upload-button’, div)[0],
fieldName : filePostName,
form : K(‘.ke-form’, div),
target : target,
width: 60,
afterUpload : function(data) {
dialog.hideLoading();
if (data.error === 0) {
var url = data.url;
if (formatUploadUrl) {
url = K.formatUrl(url, ‘absolute’);
}
if (self.afterUpload) {
self.afterUpload.call(self, url, data, name);
}
if (!fillDescAfterUploadinsertvideo) {
clickFn.call(self, url, data.title, data.width, data.height, data.border, data.align);
} else {
K(“.ke-dialog-row #remoteUrl”, div).val(url);
K(“.ke-tabs-li”, div)[0].click();
K(“.ke-refresh-btn”, div).click();
}
} else {
alert(data.message);
}
},
afterError : function(html) {
dialog.hideLoading();
self.errorDialog(html);
}
});
uploadbutton.fileBox.change(function(e) {
localUrlBox.val(uploadbutton.fileBox.val());
});
if (allowFileManager) {
viewServerBtn.click(function(e) {
self.loadPlugin(‘filemanager’, function() {
self.plugin.filemanagerDialog({
viewType : ‘VIEW’,
dirName : ‘insertvideo’,
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 originalWidth = 0, originalHeight = 0;
function setSize(width, height) {
widthBox.val(width);
heightBox.val(height);
originalWidth = width;
originalHeight = height;
}
refreshBtn.click(function(e) {
var tempImg = K(‘<img src=”‘ + urlBox.val() + ‘” />’, document).css({
position : ‘absolute’,
visibility : ‘hidden’,
top : 0,
left : ‘-1000px’
});
tempImg.bind(‘load’, function() {
setSize(tempImg.width(), tempImg.height());
tempImg.remove();
});
K(document.body).append(tempImg);
});
widthBox.change(function(e) {
if (originalWidth > 0) {
heightBox.val(Math.round(originalHeight / originalWidth * parseInt(this.value, 10)));
}
});
heightBox.change(function(e) {
if (originalHeight > 0) {
widthBox.val(Math.round(originalWidth / originalHeight * parseInt(this.value, 10)));
}
});
urlBox.val(options.insertvideoUrl);
setSize(options.insertvideoWidth, options.insertvideoHeight);
titleBox.val(options.insertvideoTitle);
alignBox.each(function() {
if (this.value === options.insertvideoAlign) {
this.checked = true;
return false;
}
});
if (showRemote && tabIndex === 0) {
urlBox[0].focus();
urlBox[0].select();
}
return dialog;
};
self.plugin.insertvideo = {
edit : function() {
var img = self.plugin.getSelectedinsertvideo();
self.plugin.insertvideoDialog({
insertvideoUrl : img ? img.attr(‘data-ke-src’) : ‘http://’,
insertvideoWidth : img ? img.width() : ”,
insertvideoHeight : img ? img.height() : ”,
insertvideoTitle : img ? img.attr(‘title’) : ”,
insertvideoAlign : img ? img.attr(‘align’) : ”,
showRemote : allowinsertvideoRemote,
showLocal : allowinsertvideoUpload,
tabIndex: img ? 0 : insertvideoTabIndex,
clickFn : function(url, title, width, height, border, align) {
if (img) {
img.attr(‘src’, url);
img.attr(‘data-ke-src’, url);
img.attr(‘width’, width);
img.attr(‘height’, height);
img.attr(‘title’, title);
img.attr(‘align’, align);
img.attr(‘alt’, title);
} else {
self.exec(‘insertinsertvideo’, url, title, width, height, border, align);
}
// Bugfix: [Firefox] 上传图片后,总是出现正在加载的样式,需要延迟执行hideDialog
setTimeout(function() {
self.hideDialog().focus();
}, 0);
}
});
},
‘delete’ : function() {
var target = self.plugin.getSelectedinsertvideo();
if (target.parent().name == ‘a’) {
target = target.parent();
}
target.remove();
// [IE] 删除图片后立即点击图片按钮出错
self.addBookmark();
}
};
self.clickToolbar(name, self.plugin.insertvideo.edit);
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: