diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2021-10-06 06:18:34 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2021-10-06 06:18:34 -0400 |
commit | 2074f6be3096386fb543f040dec314290f6eb920 (patch) | |
tree | 440937029064df9452b5f0cf4d042631fc171b93 | |
parent | b1388b40b138e4440cda121b8044b26ae35759ef (diff) |
Fixed the carousel
-rw-r--r-- | index.css | 6 | ||||
-rw-r--r-- | index.js | 3 |
2 files changed, 5 insertions, 4 deletions
@@ -98,16 +98,16 @@ header > nav > ul a:hover { } #image_container { - width: 100%; + padding-left: calc(50% - 120px); display: flex; flex-direction: row; height: 100%; - transition: left 200ms linear; + transition: transform 100ms linear; } .carousel_image { width: 240px; - transition: opacity 200ms linear; + transition: opacity 100ms linear; padding: 0; margin: 0; padding-right: 12px; @@ -37,7 +37,8 @@ function runCarousel() { function updateCarousel() { var children = imageContainer.children, - selectedChildPosition = -imageContainer.children[carouselPosition].offsetLeft + 240; + numChildren = imageContainer.children.length, + selectedChildPosition = -(carouselPosition * 240); imageContainer.style.transform = 'translate(' + selectedChildPosition + 'px, 0)'; for (var i = 0; i < children.length; i++) { var image = children[i]; |