当前位置: 首页 > news >正文

免费asp网站后台管理系统设计网站登录框ps怎么做

免费asp网站后台管理系统,设计网站登录框ps怎么做,物流管理专业就业方向,市场调研网站有哪些TinyMC编辑器简介 TinyMCE是一款易用、且功能强大的所见即所得的富文本编辑器。跟其他富文本编辑器相比#xff0c;有着丰富的插件#xff0c;支持多种语言#xff0c;能够满足日常的业务需求并且免费。 TinyMCE的优势#xff1a; 开源可商用#xff0c;基于LGPL2.1 插…TinyMC编辑器简介 TinyMCE是一款易用、且功能强大的所见即所得的富文本编辑器。跟其他富文本编辑器相比有着丰富的插件支持多种语言能够满足日常的业务需求并且免费。 TinyMCE的优势 开源可商用基于LGPL2.1 插件丰富自带插件基本涵盖日常所需功能 接口丰富可扩展性强有能力可以无限拓展功能 界面好看符合现代审美 提供经典、内联、沉浸无干扰三种模式详见“介绍与入门” 对标准支持优秀自v5开始 多语言支持官网可下载几十种语言。 下图为我开启全部功能的截图 TinyMCE中文文档地址TinyMCE中文文档中文手册 1、安装 vue-cli版本3.x 安装tinymce npm install tinymce6.3 -S 安装tinymce-vue npm install --save tinymce tinymce/tinymce-vue^5 这两个组件安装完之后在public目录下新建文件夹tinymce目录建好后找到node_modules文件夹下的tinymce/skins目录将skins目录复制到我们创建的tinymce文件夹内。 vue-cli版本2.x 安装tinymce,我安装的是5.10.7 npm install tinymce5.10.7 -S 安装tinymce-vue npm install --save tinymce tinymce/tinymce-vue^3 安装之后在 node_modules 中找到 tinymce/skins 目录然后将 skins 目录拷贝到 public/tinymce 目录下 注意 如果是使用 vue-cli 3.x 之前构建的 typescript 项目就放到 static 目录下和文中所有 public 目录一样处理 tinymce 默认是英文界面所以还需要下载一个中文语言包 然后将这个语言包放到相同 public/tinymce 目录下新建的langs文件目录中 这个是vue-cli3项目的放法 2、配置中文语言 到官网下载中文语言包 zh_CN.js 在刚才创建的static/tinymce文件夹内再新建langs文件夹用来存放我们下载的中文语言包如下图所示 vue-cli2.x 同理 ​​3.组件 templateEditor idtinymce v-modelcontent :initinit/Editor /templatescript import tinymce from tinymce; import Editor from tinymce/tinymce-vue; import tinymce/themes/silver/theme; import tinymce/plugins/image; import tinymce/plugins/link; import tinymce/plugins/code; import tinymce/plugins/table; import tinymce/plugins/lists; import tinymce/plugins/wordcount; import tinymce/icons/default/icons; import tinymce/themes/silver; import tinymce/plugins/media; import tinymce/plugins/contextmenu; import tinymce/plugins/colorpicker; import tinymce/plugins/textcolor; import tinymce/plugins/preview; import tinymce/plugins/advlist; import tinymce/plugins/codesample; import tinymce/plugins/hr; import tinymce/plugins/fullscreen; import tinymce/plugins/textpattern; import tinymce/plugins/searchreplace; import tinymce/plugins/autolink; import tinymce/plugins/directionality; import tinymce/plugins/visualblocks; import tinymce/plugins/visualchars; import tinymce/plugins/template; import tinymce/plugins/charmap; import tinymce/plugins/nonbreaking; import tinymce/plugins/insertdatetime; import tinymce/plugins/imagetools; import tinymce/plugins/autosave; import tinymce/plugins/autoresize; import tinymce/plugins/paste; import tinymce/plugins/print; import tinymce/plugins/quickbars; import tinymce/plugins/emoticons; import tinymce/plugins/bbcode; import tinymce/plugins/tabfocus; // 扩展插件 // import /tinymce/plugins/lineheight/plugin; // import /tinymce/plugins/bdmap/plugin;import { uploadImageFile, deleteFile } from /api/geekplus/articles; export default {name: TinyEditor,components: { Editor },props:{value: {type: String,default: ,},},data() {return {content: ,//fileList: [],allImageList: [],baseHost: window.location.host,baseApi: process.env.VUE_APP_BASE_API,init: {language_url: /tinymce/langs/zh_CN.js, // 语言包位置因为放在public下所以可以省略publicselector: #tinymce, //tinymce的id// auto_focus: element1,language: zh_CN, //语言类型skin_url: /tinymce/skins/ui/oxide,height: 650, //编辑器高度min_height: 400,highlight_on_focus: true,// contextmenu_never_use_native: true,//5.0.1draggable_modal: true,//inline: true,// content_style: p {margin: 2px 0;},init_instance_callback: (editor) {// 更改元素为Diveditor.execCommand(mceInsertContent, false, p/p)},browser_spellcheck: true, // 拼写检查// elementpath: false, //禁用编辑器底部的状态栏// statusbar: false, // 隐藏编辑器底部的状态栏// paste_data_images: true, // 允许粘贴图像// menubar: false, //最顶部文字信息mobile: {menubar: true,plugins: [autosave, lists, autolink],toolbar: [undo, bold, italic, styleselect],},// mode: textareas,placeholder: 在此处书写...,// forced_root_block: , // 删除在tinymce中自动添加的p标签// force_br_newlines : true,// force_p_newlines : false,preview_styles: font-size color,invalid_styles: {*: color font-size, //全局无效样式a: background, // 链接禁用背景样式},plugins:image link code codesample table lists wordcount autosave autolink insertdatetime preview media fullscreen quickbars print template, //就可以增加上面引入的插件加入下面这一行就可以在toolbar栏显示相应插件。branding: false, //是否禁用“Powered by TinyMCE”toolbar: [{name: history,items: [undo, redo],},{name: styles,items: [styleselect],},{name:code,items:[codesample]},{name: formatting,items: [bold, italic, underline, strikethrough],},{name: fonts,items: [fontselect, fontsizeselect, ],},{name: colors,items: [forecolor, backcolor],},{name: medialink,items: [link, image, media],},{name: alignment,items: [alignleft, aligncenter, alignright, alignjustify],},{name: indentation,items: [outdent, indent],},{name: blockquote,items: [blockquote],},{name: table,items: [table],},{name: lists,items: [numlist, bullist],},{name: tools,items: [preview, print, fullscreen],},],//toolbar: undo redo | fontselect fontsizeselect link autolink lineheight | forecolor backcolor | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | image imagetools | code | h1 h2 h3 h4 h5 blockquote table numlist bullist outdent indent preview fullscreen, //工具栏// toolbar_groups: {// formatting: {// icon: bold,// tooltip: Formatting,// items: bold italic underline | superscript subscript// }// },toolbar_mode: sliding,//toolbar_sticky: true,image_caption: true,images_upload_handler: (blobInfo, success, failure, progress) {this.uploadFile(blobInfo, success, failure);},//file_picker_callback: ,fontsize_formats:8px 10px 12px 14px 16px 18px 24px 36px 48px 56px 72px,font_formats:微软雅黑Microsoft YaHei,Helvetica Neue,PingFang SC,sans-serif;苹果苹方PingFang SC,Microsoft YaHei,sans-serif;宋体simsun,serif;仿宋体FangSong,serif;黑体SimHei,sans-serif;Arialarial,helvetica,sans-serif;Arial Blackarial black,avant garde;Book Antiquabook antiqua,palatino;,// lineheight_formats: 1 1.1 1.2 1.3 1.4 1.5 2,// link_list: [// { title: 预置链接1, value: http://www.tinymce.com },// { title: 预置链接2, value: http://tinymce.ax-z.cn }// ],// image_list: [// { title: 预置图片1, value: https://www.tiny.cloud/images/glyph-tinymce2x.png },// { title: 预置图片2, value: https://www.baidu.com/img/bd_logo1.png }// ],// image_class_list: [// { title: None, value: }// // { title: Some class, value: class-name }// ],tabfocus_elements: tinymce,importcss_append: true,textpattern_patterns: [{ start: *, end: *, format: italic },{ start: **, end: **, format: bold },{ start: #, format: h1 },{ start: ##, format: h2 },{ start: ###, format: h3 },{ start: ####, format: h4 },{ start: #####, format: h5 },{ start: ######, format: h6 },{ start: 1. , cmd: InsertOrderedList },{ start: * , cmd: InsertUnorderedList },{ start: - , cmd: InsertUnorderedList },],setup: (editor) {// 自定义toolbar按钮需要在toolbar添加editor.ui.registry.addButton(testBtn, {text: 按钮文字,tooltip: 按钮提示,onAction: () editor.insertContent(a hrefhttps://www.geekplus.xyz target_blanktest text/a)})},},};},// init: {// setup: (Editor) {// // 初次化编辑器// Editor.on(init, () {// Editor.setContent(this.value);// });// },// },watch: {value(newVal) {//this.content newValue;//用户vue绑定回显//if (this.isInit) {//this.isInit false;//this.getContent();// this.$nextTick(() {// const editor tinymce.get(tinymce);// editor.activeEditor.getContent()// editor.setContent(newVal);// });//}this.contentnewVal;},content(newValue) {this.$emit(input, newValue);console.log(newValue);}},//获取焦点光标到最后面keepLastIndex (obj, window) {if (window.getSelection) { //ie11 10 9 ff safariobj.focus(); //解决ff不获取焦点无法定位问题var range window.getSelection(); //创建rangerange.selectAllChildren(obj); //range 选择obj下所有子内容range.collapseToEnd(); //光标移至最后} else if (document.selection) { //ie10 9 8 7 6 5var range document.selection.createRange(); //创建选择对象range.moveToElementText(obj); //range定位到objrange.collapse(false); //光标移至最后range.select();}}mounted() {tinymce.init({});this.$nextTick(() {var ifra document.getElementById(tinymce_ifr);// this.keepLastIndex(// ifra.contentWindow.document.getElementById(tinymce)// );});},methods: {// file_picker_callback: function(callback, value, meta) {// // Provide file and text for the link dialog// if (meta.filetype file) {// callback(mypage.html, {text: My text});// }// // Provide image and alt text for the image dialog// if (meta.filetype image) {// callback(myimage.jpg, {alt: My alt text});// }// // Provide alternative source and posted for the media dialog// if (meta.filetype media) {// callback(movie.mp4, {source2: alt.ogg, poster: image.jpg});// }// },getContent(){var cnt tinymce.editors[tinymce].getContent();//console.log(cnt);},//自定义上传函数uploadFile(blobInfo, success, failure, progress) {let formData new FormData();formData.append(file, blobInfo.blob());uploadImageFile(formData).then((response) {//console.log(response);var serverUrl response.url;let uploadSuccess {};const imageUrl https://www.geekplus.xyz this.baseApi serverUrl;// this.$message({// message: 上传 response.msg,// type: success,// });//success函数获取我们反悔的图片url就实现了插入编辑器了success(imageUrl);// this.content urluploadSuccess { filePath: serverUrl };this.allImageList.push(uploadSuccess);}).catch((error) {//console.log(error);failure(Invalid JSON: error.msg);this.$message({message: error.msg,type: error,showClose: true,});});},},destroyed() {}, }; /script style /style 4.组件使用 tiny-editor v-modelform.articleContent onSelectionChangeonEditorBlur($event) /tiny-editor import TinyEditor from /components/TinyMCE components: { TinyEditor },
http://www.w-s-a.com/news/673741/

相关文章:

  • 网站维护服务公司上海兼职网站制作
  • 企业做网站需要多少钱湘潭九华网站
  • 嘉兴建站服务微营销官网
  • 比较好的网页模板网站浦项建设(中国)有限公司网站
  • 有趣的个人网站网页设计与制作的岗位职责
  • 有建设网站的软件吗长沙做网站的公司对比
  • 网站的外链接数中铝长城建设有限公司网站
  • 北京建设网站公司网站建设费用 无形资产
  • 适合seo的建站系统如何建立网页
  • 我想自己建立一个网站给大家分享个永久免费的云服务器
  • 怎样做网站和网站的友情链接官网优化 报价
  • 购买网站空间大小聊城网站空间公司
  • 做像美团淘宝平台网站多少钱开发网站企业
  • 网站建设前期费用二手购物网站策划书
  • dede学校网站百度联盟是什么
  • 献县网站建设网站开发专业定制
  • 龙华做网站yihe kj安徽六安彩礼一般给多少
  • flash网站建设公司我的小程序在哪里找
  • 建网站需要数据库吗如何制作简单的网页链接
  • 杭州设计企业网站高端公司上虞做网站公司
  • 做网站能赚钱么用wordpress搭建知名网站
  • 阿里云服务器网站开发青岛做网站找哪家
  • 凡科做的网站为什么打不开织梦cms仿某作文网站整站源码(带采集)安装数据库
  • 免费h5模板网站模板汽车报价网址
  • 蔡甸网站建设烟台网站建设yt
  • 最流行的网站开发新开的网页游戏平台
  • 暴富建站wordpress 标签分类
  • 搞笑网站源码百度快照替代
  • 重庆网站建设哪家公司哪家好关键词是怎么排名的
  • 青县网站建设今天国际大事新闻