代码编辑器 - Code Mirror

基本编辑器

CodeMirror 是一个灵活的文本代码编辑器。它是专门用于编辑代码,并附带一些语言模块和插件,实现更先进的编辑功能。

 
1
<script>
2
    // Code goes here
3
4
     // For demo purpose - animation css script
5
    function animationHover(element, animation) {
6
        element = $(element);
7
        element.hover(
8
            function () {
9
                element.addClass('animated ' + animation);
10
            },
11
            function () {
12
                //wait for animation to finish before removing classes
13
                window.setTimeout(function () {
14
                    element.removeClass('animated ' + animation);
15
                }, 2000);
16
            });
17
    }
18
</script>
19
                                
主题示例

CodeMirror提供丰富的API接口和CSS主题,详情请访问 http://codemirror.net/

17
 
1
// Code goes here
2
3
     // For demo purpose - animation css script
4
    function animationHover(element, animation) {
5
        element = $(element);
6
        element.hover(
7
            function () {
8
                element.addClass('animated ' + animation);
9
            },
10
            function () {
11
                //wait for animation to finish before removing classes
12
                window.setTimeout(function () {
13
                    element.removeClass('animated ' + animation);
14
                }, 2000);
15
            });
16
    }
17