关闭开始阅读文字

This commit is contained in:
Vixcity
2023-07-28 15:36:27 +08:00
parent 3caab3192a
commit 20719d8703
3 changed files with 4 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ const Hero = props => {
{/* 滚动按钮 */}
<div onClick={scrollToWrapper} className="z-10 cursor-pointer w-full text-center py-4 text-3xl absolute bottom-10 text-white">
<div className="opacity-70 animate-bounce text-xs">{CONFIG.HOME_NAV_BACKGROUND_IMG_FIXED && locale.COMMON.START_READING}</div>
<div className="opacity-70 animate-bounce text-xs">{CONFIG.SHOW_START_READING && locale.COMMON.START_READING}</div>
<i className='opacity-70 animate-bounce fas fa-angle-down' />
</div>
</div>

View File

@@ -61,7 +61,7 @@ const Hero = props => {
{/* 滚动按钮 */}
<div onClick={() => { window.scrollTo({ top: wrapperTop, behavior: 'smooth' }) }}
className="mt-12 border cursor-pointer w-40 text-center pt-4 pb-3 text-md text-white hover:bg-orange-600 duration-300 rounded-3xl z-40">
<i className='animate-bounce fas fa-angle-double-down' /> <span>{CONFIG.HOME_NAV_BACKGROUND_IMG_FIXED && locale.COMMON.START_READING}</span>
<i className='animate-bounce fas fa-angle-double-down' /> <span>{CONFIG.SHOW_START_READING && locale.COMMON.START_READING}</span>
</div>
</div>