hexo-theme-keep/source/js/main.js

36 lines
902 B
JavaScript

window.addEventListener('DOMContentLoaded', () => {
KEEP.themeInfo = {
theme: `Keep v${KEEP.theme_config.version}`,
author: 'XPoet',
repository: 'https://github.com/XPoet/hexo-theme-keep'
}
// print theme base info
KEEP.printThemeInfo = () => {
console.log(`\n %c ${KEEP.themeInfo.theme} %c ${KEEP.themeInfo.repository} \n`, `color: #fadfa3; background: #333; padding: 5px 0;`, `background: #fadfa3; padding: 5px 0;`);
}
KEEP.refresh = () => {
KEEP.initUtils();
KEEP.initHeaderShrink();
KEEP.initModeToggle();
KEEP.initBack2Top();
if (KEEP.theme_config.local_search.enable === true) {
KEEP.initLocalSearch();
}
if (KEEP.theme_config.code_copy.enable === true) {
KEEP.initCodeCopy();
}
if (KEEP.theme_config.lazyload.enable === true) {
KEEP.initLazyLoad();
}
}
KEEP.printThemeInfo();
KEEP.refresh();
});