📅  最后修改于: 2023-12-03 14:40:05.986000             🧑  作者: Mango
CKEditor5 CDN (Content Delivery Network) is a cloud-based platform that provides a fast and reliable way of delivering CKEditor5 to your website. It enables developers to easily add CKEditor5 to their application without the need to download and install any files.
In order to use CKEditor5 CDN, you need to include the CDN URL in your HTML page. You can do this by adding the following script tag to the head section of your HTML page:
<script src="https://cdn.ckeditor.com/ckeditor5/27.1.0/classic/ckeditor.js"></script>
Next, you need to add CKEditor5 to your web page. You can do this by creating a HTML element, such as a textarea, and adding the "ckeditor" class to it. For example:
<textarea class="ckeditor"></textarea>
You can customize CKEditor5 by modifying its configuration options. For example, you can modify the toolbar, the font family, and the font size. To do this, you need to create a configuration object and pass it to the CKEditor5 instance. For example:
<script>
ClassicEditor
.create( document.querySelector( '.ckeditor' ), {
toolbar: [ 'heading', '|', 'bold', 'italic', 'link' ],
fontFamily: {
options: [ 'default', 'Arial, Helvetica, sans-serif', 'Courier New, Courier, monospace', 'Georgia, serif', 'Lucida Sans Unicode, Lucida Grande, sans-serif', 'Tahoma, Geneva, sans-serif', 'Times New Roman, Times, serif', 'Trebuchet MS, Helvetica, sans-serif', 'Verdana, Geneva, sans-serif' ]
},
fontSize: {
options: [ 9, 11, 13, 'default', 17, 19, 21 ]
}
} )
.catch( error => {
console.error( error );
} );
</script>
Now you can enjoy CKEditor5 on your website using the CDN provided by CKEditor. You can add images, videos, tables, and other content to your web page using the editor.
CKEditor5 CDN is a reliable and easy-to-use way of adding CKEditor5 to your web application. It provides the latest version of CKEditor5 and allows developers to customize the editor to meet their needs. Using the CDN saves developers time and effort by removing the need to download and install the editor's files.