如何使用 jquery 淡入 ckeditor?

发布于 2024-10-17 04:59:14 字数 195 浏览 2 评论 0原文

我正在构建一个ajax应用程序,我希望ckeditor淡入或淡出以获得良好的平滑效果。但是无论我尝试什么,编辑器都会立即出现或消失。我使用以下代码来创建编辑器,任何想法如何做淡入?

$("#txt_maingb").ckeditor(function(){},{toolbar:myToolbarConfig_FULL});

I am building an ajax app, and I want the ckeditor to fade in or out for a nice smooth effect.But no matter what I try, the editor appears or disappears instantly.I use the following code to create the editor, any ideas how to do the fadeIn?

$("#txt_maingb").ckeditor(function(){},{toolbar:myToolbarConfig_FULL});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小瓶盖 2024-10-24 04:59:14
var textarea = $("#txt_maingb");
textarea.ckeditor(function(){},{toolbar:myToolbarConfig_FULL});
$('#cke_editor1').hide().fadeIn(500);
var textarea = $("#txt_maingb");
textarea.ckeditor(function(){},{toolbar:myToolbarConfig_FULL});
$('#cke_editor1').hide().fadeIn(500);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文