yaohaixiao / outline.js

outline.js - 自动生成文章导读(Table of Contents)导航的 JavaScript 工具。会自动分析文章中的标题( h1~h6 )标签,并生成文章段落层次结构的导读导航菜单。
https://yaohaixiao.github.io/outline.js/
MIT License
129 stars 16 forks source link

没有目录树的情况下只能点击抵达底部 #50

Closed whitebearcode closed 3 months ago

whitebearcode commented 4 months ago

没有目录树的情况下只能点击向下的按钮抵达底部,到底部的时候向上返回顶部的按钮出不来

whitebearcode commented 4 months ago

还有就是独立目录树模式下,点击目录树第一次会出不来

yaohaixiao commented 4 months ago

感谢你的反馈,能截图说明以下吗?

whitebearcode commented 4 months ago

就是独立目录导航,点击导航目录按钮不是应该显示出来文章目录吗,然而点击后会直接全部隐藏,啥都没有了

yaohaixiao commented 4 months ago

你的配置可以贴出来看看吗,或者给个演示地址我看看

whitebearcode commented 4 months ago

可能是我的站点css与outline冲突,你说的配置如下: (function(){ const defaults = Outline.DEFAULTS let outline

defaults.position = 'relative'
defaults.articleElement = '#article'
defaults.homepage = './index.html'
// Outline.DEFAULTS 是对象,应用类型的
outline = new Outline(defaults)

})()