Fixed js section animation
This commit is contained in:
parent
411839f3c6
commit
7aeab6d8d7
1 changed files with 2 additions and 4 deletions
|
@ -52,10 +52,10 @@ function onSectionClick(event) {
|
|||
sectionToClose.className = next(sectionToClose).className = "";
|
||||
});
|
||||
|
||||
animateScroll(this, 200);
|
||||
|
||||
this.className = contentSection.className = "openSection";
|
||||
|
||||
animateScroll(this, 200);
|
||||
|
||||
} else {
|
||||
this.className = contentSection.className = "";
|
||||
}
|
||||
|
@ -87,8 +87,6 @@ function animateScroll(element, duration) {
|
|||
if (duration < 0)
|
||||
return;
|
||||
var yLeft = element.getBoundingClientRect().top;
|
||||
if (yLeft <= 0)
|
||||
return;
|
||||
var dy = yLeft / duration * ANIMATION_INTERVAL;
|
||||
window.scrollBy(0, dy);
|
||||
|
||||
|
|
Reference in a new issue