您好,登錄后才能下訂單哦!
在項目中需要引入Quill文本編輯器,并且根據(jù)需求,需要自定義字體選項、圖片拖拽上傳和改變大小,所以根據(jù)Quill官網系統(tǒng)學習了一下,以下是我學習和研究的結果。
一、主題
Quill的富文本編輯器分為snow和bubble兩種。
snow是有工具欄的,如下:
bubble是只有文本域的,如下:
那么具體如何選擇
在vue項目中,具體引入Quill的文件中,需要使用哪種主題就寫哪個。默認是snow主題的。
<script> export default { data:function(){ return{ editorOption:{ //theme:'bubble' theme:'snow' } } } } </script>
二、自定義工具欄toolbar
1、具體配置如下,需要哪個寫哪個。
<script> export default { data:function(){ return{ editorOption:{ modules:{ toolbar:[ ['bold', 'italic', 'underline', 'strike'], //加粗,斜體,下劃線,刪除線 ['blockquote', 'code-block'], //引用,代碼塊 [{ 'header': 1 }, { 'header': 2 }], // 標題,鍵值對的形式;1、2表示字體大小 [{ 'list': 'ordered'}, { 'list': 'bullet' }], //列表 [{ 'script': 'sub'}, { 'script': 'super' }], // 上下標 [{ 'indent': '-1'}, { 'indent': '+1' }], // 縮進 [{ 'direction': 'rtl' }], // 文本方向 [{ 'size': ['small', false, 'large', 'huge'] }], // 字體大小 [{ 'header': [1, 2, 3, 4, 5, 6, false] }], //幾級標題 [{ 'color': [] }, { 'background': [] }], // 字體顏色,字體背景顏色 [{ 'font': [] }], //字體 [{ 'align': [] }], //對齊方式 ['clean'], //清除字體樣式 ['image','video'] //上傳圖片、上傳視頻 ] }, theme:'snow' } } } } </script>
其中color、background、font、align都是有默認值的,寫一個空數(shù)據(jù)即可。如果想要自定義,請往下看。
2、自定義字體列表,加入自己需要的字體
(1)引入一個單獨自定義的font.css文件(如下)在app.vue文件中,因為要在初始化的時候就引入才能覆蓋掉默認的??!很重要
<template> <div id="app"> <router-view/> </div> </template> <script> export default { name: 'App' } </script> <style> @import './style/font'; </style>
(2)font.css
把需要自定義放在字體列表的字體放在這個css中,選擇器如下。data-value后的值是要拼在.ql-font-后面的,需要保持一致。
[data-value=a] ql-font-a
content指的是字體列表中的選項
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before { content: "宋體"; font-family: "SimSun"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before { content: "黑體"; font-family: "SimHei"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Microsoft-YaHei]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Microsoft-YaHei]::before { content: "微軟雅黑"; font-family: "Microsoft YaHei"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before { content: "楷體"; font-family: "KaiTi"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before { content: "仿宋"; font-family: "FangSong"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before { content: "Arial"; font-family: "Arial"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Times-New-Roman]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Times-New-Roman]::before { content: "Times New Roman"; font-family: "Times New Roman"; } .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=sans-serif]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=sans-serif]::before { content: "sans-serif"; font-family: "sans-serif"; } .ql-font-SimSun { font-family: "SimSun"; } .ql-font-SimHei { font-family: "SimHei"; } .ql-font-Microsoft-YaHei { font-family: "Microsoft YaHei"; } .ql-font-KaiTi { font-family: "KaiTi"; } .ql-font-FangSong { font-family: "FangSong"; } .ql-font-Arial { font-family: "Arial"; } .ql-font-Times-New-Roman { font-family: "Times New Roman"; } .ql-font-sans-serif { font-family: "sans-serif"; }
(3).vue文件中
<script> import { quillEditor } from 'vue-quill-editor' import * as Quill from 'quill' //引入編輯器 //quill編輯器的字體 var fonts = ['SimSun', 'SimHei','Microsoft-YaHei','KaiTi','FangSong','Arial','Times-New-Roman','sans-serif']; var Font = Quill.import('formats/font'); Font.whitelist = fonts; //將字體加入到白名單 Quill.register(Font, true); export default { data:function(){ return{ content:'', editorOption:{ modules:{ toolbar:[ ['bold', 'italic', 'underline', 'strike'], ['blockquote', 'code-block'], [{ 'header': 1 }, { 'header': 2 }], [{ 'list': 'ordered'}, { 'list': 'bullet' }], [{ 'script': 'sub'}, { 'script': 'super' }], [{ 'indent': '-1'}, { 'indent': '+1' }], [{ 'direction': 'rtl' }], [{ 'size': ['small', false, 'large', 'huge'] }], [{ 'header': [1, 2, 3, 4, 5, 6, false] }], [{ 'color': [] }, { 'background': [] }], [{ 'font': fonts }], //把上面定義的字體數(shù)組放進來 [{ 'align': [] }], ['clean'], ['image','video'] ] }, theme:'snow' } } } } </script>
效果圖如下:
三、圖片拖拽上傳ImgeDrop
<script> import { quillEditor } from 'vue-quill-editor' import * as Quill from 'quill' //引入編輯器 //quill圖片可拖拽上傳 import { ImageDrop } from 'quill-image-drop-module'; Quill.register('modules/imageDrop', ImageDrop); export default { data:function(){ return{ editorOption:{ modules:{ imageDrop:true, }, theme:'snow' } } } } </script>
四、圖片調整大小ImageResize
<script> import { quillEditor } from 'vue-quill-editor' import * as Quill from 'quill' //引入編輯器 //quill圖片可拖拽改變大小 import ImageResize from 'quill-image-resize-module' Quill.register('modules/imageResize', ImageResize) export default { data:function(){ return{ editorOption:{ modules:{ imageResize: {} }, theme:'snow' } } } } </script>
效果圖如下:可以調整圖片的對齊方式,并顯示圖片的大小
Quill使用基本如上。安裝可參考:vue如何安裝使用Quill富文本編輯器
其他應用可參考Quill官網https://quilljs.com/
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。