summernote 添加emoji表情包

匿名 (未验证) 提交于 2019-12-03 00:22:01

引入:

 <link href="~/Content/summernote-master/tam-emoji/css/emoji.css" rel="stylesheet" />
<script src="~/Content/summernote-master/tam-emoji/js/config.js"></script>     <script src="~/Content/summernote-master/tam-emoji/js/tam-emoji.js"></script>

使用:

        $(document).ready(function () {             //emoji图片路径             document.emojiSource = '../../content/summernote-master/tam-emoji/img';             $('#Content').summernote({                 height: 400,                 minHeight: 400,                 maxHeight: 400,                 placeholder: "请输入内容",                 lang: 'zh-CN',                 dialogsFade: true,  //模态框淡入淡出                 toolbar: [                     ['history', ['undo', 'redo']],                     ['insert', ['emoji']], //emoji                     ['style', ['style']],                     ['font', ['bold', 'underline', 'clear']],                     ['fontname', ['fontname']],                     ['color', ['color']],                     ['para', ['ul', 'ol', 'paragraph']],                     ['table', ['table']],                     ['insert', ['link', 'picture']],                     ['view', ['fullscreen', 'help']],                  ]             });         });

效果图:



附上github地址

https://github.com/trinhtam/summernote-emoji



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!