修改一言为js加载
This commit is contained in:
parent
ff697b2aff
commit
18fb91d6db
|
@ -40,7 +40,7 @@ style:
|
|||
enable: false
|
||||
background_img: /images/bg.svg # You can use local image or image external link
|
||||
description: Keep writing and Keep loving.
|
||||
hitokoto: # Hitokoto api. https://v1.hitokoto.cn
|
||||
hitokoto: # Hitokoto api. https://v1.hitokoto.cn/?encode=js
|
||||
|
||||
# Scroll style settings
|
||||
scroll:
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
<div class="first-screen-container flex-center fade-in-down-animation">
|
||||
<div class="content flex-center">
|
||||
<div class="description">
|
||||
<div class="description hitokoto">
|
||||
<%= theme.style.first_screen.description || config.description %>
|
||||
</div>
|
||||
<% if (theme.style.first_screen.hitokoto) { %>
|
||||
<script data-pjax="" src="<%- theme.style.first_screen.hitokoto %>"></script>
|
||||
<% } %>
|
||||
<% if (theme.social_contact.enable) { %>
|
||||
<div class="s-icon-list">
|
||||
<% for (const key in theme.social_contact.links) { %>
|
||||
|
|
|
@ -330,25 +330,6 @@ KEEP.initUtils = () => {
|
|||
|
||||
}, 200);
|
||||
},
|
||||
|
||||
// loading hitokoto
|
||||
initHitokoto() {
|
||||
|
||||
if (KEEP.theme_config.style.first_screen.enable === true && KEEP.theme_config.style.first_screen.hitokoto && window.location.pathname === '/') {
|
||||
|
||||
fetch(KEEP.theme_config.style.first_screen.hitokoto)
|
||||
.then((res) => {
|
||||
return res.json();
|
||||
})
|
||||
.then((data) => {
|
||||
this.firstScreen_dom.querySelector('.description').innerText = data.hitokoto;
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err);
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// init scroll
|
||||
|
@ -378,7 +359,4 @@ KEEP.initUtils = () => {
|
|||
// set how long age in home article block
|
||||
KEEP.utils.setHowLongAgoInHome();
|
||||
|
||||
// loading hitokoto
|
||||
KEEP.utils.initHitokoto();
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue