summaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
authorMatthew Kosarek <mattkae@protonmail.com>2021-10-06 06:18:34 -0400
committerMatthew Kosarek <mattkae@protonmail.com>2021-10-06 06:18:34 -0400
commit2074f6be3096386fb543f040dec314290f6eb920 (patch)
tree440937029064df9452b5f0cf4d042631fc171b93 /index.js
parentb1388b40b138e4440cda121b8044b26ae35759ef (diff)
Fixed the carousel
Diffstat (limited to 'index.js')
-rw-r--r--index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.js b/index.js
index 3397c30..72fcc2e 100644
--- a/index.js
+++ b/index.js
@@ -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];