Skip to content

v0.0.10

Compare
Choose a tag to compare
@D-Sketon D-Sketon released this 07 Jan 08:08
· 309 commits to main since this release

What's Changed

New Contributors

Full Changelog: v0.0.9...v0.0.10

修复

  • 修复了 404 页面不能正常搜索的 bug
  • 修复了 TOC 样式异常

特性

  • 现在不仅仅支持 algolia 搜索,也支持使用 hexo-generate-search 进行搜索了
    generator_search:
      enable: # true | false
  • 新增了鼠标烟火效果,默认开启(具体配置可以看 mouse-firework,也是本人写的一个库)
    firework:
    enable: # true | false
    options:
      excludeElements: ["a"]
      particles:
        - shape: circle
          move: ["emit"]
          easing: easeOutExpo
          colors: ["#ff5252", "#ff7c7c", "#ffafaf", "#ffd0d0"]
          number: 20
          duration: [1200, 1800]
          shapeOptions:
            radius: [16, 32]
            alpha: [0.3, 0.5]
        - shape: circle
          move: ["diffuse"]
          easing: easeOutExpo
          colors: ["#ff0000"]
          number: 1
          duration: [1200, 1800]
          shapeOptions:
            radius: 20
            alpha: [0.2, 0.5]
            lineWidth: 6
  • 新增了 pjax 功能,但目前仍然不稳定,会有很多 bug,默认关闭
    pjax:
      enable: # true | false