笙默考试管理系统-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;}

相关推荐
铁皮饭盒2 分钟前
Bun 都用 AI + Rust 重写了,咋不顺便把 Node.js 的 API 全兼容了?
前端·后端
gogoing4 分钟前
UnoCSS / Tailwind CSS 类名速查文档
css
JieE2125 分钟前
LeetCode35. 搜索插入位置:二分查找的基础与细节
javascript·算法
menlong9996 分钟前
从Prompt狂欢到Agent轨道:20 万行代码真实项目的 AI 工作流实战
前端
huangdong_6 分钟前
拼多多商品图片视频批量采集:整店自动分类与高清原图
前端·javascript·音视频
胡萝卜术7 分钟前
从零开始掌握AI应用开发:我的大模型学习路线图(RAG/Agent/MCP/全栈实践)
前端·javascript·面试
Nightwatchman10 分钟前
深入理解内存管理
前端
风骏时光牛马11 分钟前
JSON常见踩坑问题与实战避坑案例代码
前端
YAwu1111 分钟前
从 TodoList 看 React + TypeScript 类型实践
前端·javascript
To_OC12 分钟前
折腾两天 HTTP 接口调用,终于把 fetch 和前后端分离从书本概念落地到实操了
javascript·node.js·全栈