笙默考试管理系统-MyExamTest----codemirror(2)

笙默考试管理系统-MyExamTest----codemirror(2)

目录

[一、 笙默考试管理系统-MyExamTest----codemirror](#一、 笙默考试管理系统-MyExamTest----codemirror)

[二、 笙默考试管理系统-MyExamTest----codemirror](#二、 笙默考试管理系统-MyExamTest----codemirror)

[三、 笙默考试管理系统-MyExamTest----codemirror](#三、 笙默考试管理系统-MyExamTest----codemirror)

[四、 笙默考试管理系统-MyExamTest----codemirror](#四、 笙默考试管理系统-MyExamTest----codemirror)

[五、 笙默考试管理系统-MyExamTest----codemirror](#五、 笙默考试管理系统-MyExamTest----codemirror)

  • 笙默考试管理系统-MyExamTest----codemirror

cm-animate-fat-cursor {

width: auto;

border: 0;

-webkit-animation: blink 1.06s steps(1) infinite;

-moz-animation: blink 1.06s steps(1) infinite;

animation: blink 1.06s steps(1) infinite;

background-color: #7e7;

}

  • 笙默考试管理系统-MyExamTest----codemirror

@-moz-keyframes blink {

0% {}

50% { background-color: transparent; }

100% {}

}

@-webkit-keyframes blink {

0% {}

50% { background-color: transparent; }

100% {}

}

  • 笙默考试管理系统-MyExamTest----codemirror

@keyframes blink {

0% {}

50% { background-color: transparent; }

100% {}

}

/* Can style cursor different in overwrite (non-insert) mode */

.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

  • 笙默考试管理系统-MyExamTest----codemirror

.CodeMirror-rulers {

position: absolute;

left: 0; right: 0; top: -50px; bottom: -20px;

overflow: hidden;

}

.CodeMirror-ruler {

border-left: 1px solid #ccc;

top: 0; bottom: 0;

position: absolute;

}

/* DEFAULT THEME */

  • 笙默考试管理系统-MyExamTest----codemirror

.cm-s-default .cm-header {color: blue;}

.cm-s-default .cm-quote {color: #090;}

.cm-negative {color: #d44;}

.cm-positive {color: #292;}

.cm-header, .cm-strong {font-weight: bold;}

.cm-em {font-style: italic;}

.cm-link {text-decoration: underline;}

.cm-strikethrough {text-decoration: line-through;}

相关推荐
天蓝色的鱼鱼1 分钟前
别再瞎转Base64了!一文打通前端二进制任督二脉
前端
哟哟耶耶4 分钟前
Plugin-安装Vue.js devtools6.6.3扩展(组件层级可视化)
前端·javascript·vue.js
梦65016 分钟前
【前端实战】图片元素精准定位:无论缩放,元素始终钉在指定位置
前端·html·css3
烟袅35 分钟前
一文搞懂 useRef:它到底在“存”什么?
前端·react.js
Knight_AL39 分钟前
Vue + Spring Boot 项目统一添加 `/wvp` 访问前缀实践
前端·vue.js·spring boot
前端er小芳1 小时前
前端虚拟列表滚动功能实现与核心知识点详解
前端
wuhen_n1 小时前
Promise状态机与状态流转
前端
3秒一个大1 小时前
React 中的 useMemo 与 useCallback:性能优化的利器
前端·react.js
cj81401 小时前
Node.js基本概念理解
前端·node.js
ohyeah1 小时前
React 缓存三剑客:useMemo、useCallback 与 memo 的正确打开方式
前端·react.js