[js][css] 高亮提示目前正在编辑的块、高亮提示超级块、高亮提示鼠标悬浮块

实现了:

1.高亮提示目前正在编辑的块

正在编辑某个块时(不包括公式块、代码块等),明显的高亮提示

正在编辑.png

2.高亮提示鼠标悬浮块

当鼠标悬浮在某个块上时(不包括公式块、代码块等),稍淡的高亮提示

悬浮.png

3.高亮提示超级块

当鼠标悬浮在超级块内的任意一个子块上时,将高亮提示整个超级块的范围

超级块.png

JS:

document.addEventListener('selectionchange', function() {
            const selection = window.getSelection();
            if (selection.rangeCount > 0) {
                const range = selection.getRangeAt(0);
                const node = range.startContainer;
                let element = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;

                while (element && !element.classList.contains('protyle-wysiwyg')) {
                    element = element.parentElement;
                }

                if (element && element.classList.contains('protyle-wysiwyg')) {
                    const highlightedElements = element.querySelectorAll('.highlight');
                    highlightedElements.forEach(el => el.classList.remove('highlight'));

                    let targetElement = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;
                    while (targetElement && (!element.contains(targetElement) || !targetElement.classList.contains('p'))) {
                        targetElement = targetElement.parentElement;
                    }

                    if (targetElement && targetElement.classList.contains('p')) {
                        targetElement.classList.add('highlight');
                    }
                }
            }
        });

CSS:

.sb:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15), -2px -2px 6px rgba(0, 0, 0, 0.15), 0 0 12px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.5s ease-out, box-shadow 0.5s ease-out !important;
}
.p:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15), -2px -2px 6px rgba(0, 0, 0, 0.15), 0 0 12px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.5s ease-out, box-shadow 0.5s ease-out !important;
}
.p.highlight {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), -2px -2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.2) !important;
  transition: background-color 0.5s ease-out, box-shadow 0.5s ease-out !important;
}
.p.highlight:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), -2px -2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.2) !important;
  transition: background-color 0.5s ease-out, box-shadow 0.5s ease-out !important;
}
  • 思源笔记

    思源笔记是一款隐私优先的个人知识管理系统,支持完全离线使用,同时也支持端到端加密同步。

    融合块、大纲和双向链接,重构你的思维。

    23001 引用 • 92506 回帖 • 2 关注
  • 代码片段

    代码片段分为 CSS 与 JS 两种代码,添加在 [设置 - 外观 - 代码片段] 中,这些代码会在思源笔记加载时自动执行,用于改善笔记的样式或功能。

    用户在该标签下分享代码片段时需在帖子标题前添加 [css] [js] 用于区分代码片段类型。

    90 引用 • 557 回帖 • 1 关注
3 操作
queguaiya 在 2024-12-22 01:22:00 更新了该帖
queguaiya 在 2024-12-22 00:57:17 更新了该帖
queguaiya 在 2024-12-22 00:55:36 更新了该帖

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...
  • Mayrain

    很不错的功能,但是不太懂 js 代码想让 lz 帮忙改一下:

    1. 一般用打字机插件,所以选中的块高亮不必要
    2. 黑色模式下这种高亮不明显,可以改成其他颜色/其他方式吗
    3. 希望超级块的边界显示一直存在!

    让 AI 帮我改了很多次都没改好,辛苦 lz 了!