dillonzq / LoveIt

❤️A clean, elegant but advanced blog theme for Hugo 一个简洁、优雅且高效的 Hugo 主题
https://hugoloveit.com
MIT License
3.38k stars 1.07k forks source link

[FEATURE] Disable title animation #723

Open antonxo opened 2 years ago

antonxo commented 2 years ago

Hi, could we have an option to disable the title animation? Right now I have to do the following:

var elements = document.getElementsByClassName('animate__animated');
while(elements.length > 0){
    elements[0].classList.remove('animate__animated');
}

Thanks.

JustSkiv commented 2 years ago

I solved the problem this way:

I added into assets/css/_override.scss code:

h1.animate__animated {
  -webkit-animation-duration: 0s !important;
  animation-duration: 0s !important;
}
antonxo commented 2 years ago

@JustSkiv this is more efficient I think, thanks. I also did this to h2 to remove animations in Posts, Tag, and Categories pages.