Zuoqiu-Yingyi / siyuan-theme-dark-plus

思源笔记的一款多功能双模式主题 | A multifunctional dual-mode theme of SiYuan Note.
GNU Affero General Public License v3.0
139 stars 14 forks source link

请问主题可以做到修改「单击无序列表圆点」的行为吗 #35

Closed deerainw closed 2 years ago

deerainw commented 2 years ago

RT,比如将点击列表圆点的行为修改为 zoom in

Zuoqiu-Yingyi commented 2 years ago

可以, 伪代码如下

window.addEventListener('click', e => { 
    if (/* 判断是否为无序列表圆点 */) {
        e.stopPropagation(); // 阻止冒泡, 以取消其他编辑事件的执行
        /* 通过模拟点击面包屑或者模拟发送快捷键的方式实现聚焦 */
    }
}, true)