1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
/** * カルーセルを操作する関数 * Function to control the carousel * @param {object} params パラメーターオブジェクト // Parameters object */ function carrusel(params) { params = { ...{ id: 'carrusel', // カルーセルのID // ID of the carousel waitDuration: 3000, // 待機時間(ミリ秒) // Wait duration (milliseconds) animationDuration: 300, // アニメーションの時間(ミリ秒) // Animation duration (milliseconds) showIndicator: true, // インジケーターを表示するかどうか // Whether to show indicators enableIndicatorEvent: true, // インジケーターのイベントを有効にするかどうか // Whether to enable indicator events indicatorEventTypeQuick: false, // インジケーターのイベントの種類を Quick にするかどうか // Whether to enable indicator events type is quick motion showChangeContentButton: true, // コンテンツ変更ボタンを表示するかどうか // Whether to show content change buttons }, ...params }; const list = document.querySelector('#' + params.id + ' .sliders'); const lis = list.querySelectorAll('li'); const countLi = lis.length; const centerIndex = parseInt(countLi / 2); const isEven = countLi % 2 == 0; let firstLi, lastLi, cloneHeadLi, cloneEndLi; let width, maxWidth; let animating = false; const btnContainerStyleDisplay = document.querySelector('#' + params.id + ' .btn-container').style.display; const indicatorsStyleDisplay = document.querySelector('#' + params.id + ' .indicators').style.display; if (isEven) { // 最後の li を複製して先頭に追加して奇数個にする // Duplicate the last li and add it to the beginning to make it odd const lastLi = list.querySelector('li:last-child'); const cloneLastLi = lastLi.cloneNode(true); // 複製を作成 // Create a clone list.insertBefore(cloneLastLi, list.firstElementChild); // 先頭に複製を追加 // Add clone to the beginning } function showChangeContentButton(b) { let v = btnContainerStyleDisplay; if (!b) { v = 'none'; } document.querySelector('#' + params.id + ' .btn-container').style.display = v; } showChangeContentButton(params.showChangeContentButton); function showIndicator(b) { let v = indicatorsStyleDisplay; if (!b) { v = 'none'; } document.querySelector('#' + params.id + ' .indicators').style.display = v; } showIndicator(params.showIndicator); let startTimer; // 開始を一時停止するためのフラグ // Flag to temporarily pause the start let animationPaused = false; // マウスが要素に入ったときの処理 // Processing when the mouse enters the element list.addEventListener('mouseenter', () => { clearTimeout(startTimer); animationPaused = true; }); // マウスが要素から離れたときの処理 // Processing when the mouse leaves the element list.addEventListener('mouseleave', () => { animationPaused = false; start(); }); // 前へボタン // Previous button document.querySelector('#' + params.id + ' .prevBtn').addEventListener('click', () => { if (animating) return; animationPaused = true; clearTimeout(startTimer); // 逆方向のアニメーションを開始 // Start animation in reverse direction animateReverseMargin(); }); // 次へボタン // Next button document.querySelector('#' + params.id + ' .nextBtn').addEventListener('click', () => { if (animating) return; animationPaused = true; clearTimeout(startTimer); animateMargin(); }); const indicatorsContainer = document.querySelector('#' + params.id + ' .indicators'); // ドットインジケーターを生成する関数 // Function to create dot indicators function createIndicators() { for (let i = 0; i < countLi; i++) { lis[i].setAttribute('index', i); const indicator = document.createElement('span'); indicator.classList.add('indicator'); indicator.setAttribute('data-index', i); indicatorsContainer.appendChild(indicator); } } // アクティブなインジケーターを更新する関数 // Function to update active indicators function updateIndicators() { const lis = list.querySelectorAll('li'); const activeIndex = lis[centerIndex].getAttribute('index'); const indicators = document.querySelectorAll('#' + params.id + ' .indicator'); indicators.forEach((indicator, index) => { if (index == activeIndex) { indicator.classList.add('active'); } else { indicator.classList.remove('active'); } }); } // インジケーターをクリックしたときのイベントリスナー 1 // Event listener 1 for clicking on indicators if (params.enableIndicatorEvent && params.indicatorEventTypeQuick) { indicatorsContainer.addEventListener('click', (event) => { if (animating) return; if (event.target.classList.contains('indicator')) { animationPaused = true; const index = parseInt(event.target.getAttribute('data-index')); for (let i = 0; i < countLi; i++) { // 先頭のli要素を取得 // Get the first li element if (isEven) { firstLi = list.querySelector('li:nth-child(2)'); } else { firstLi = list.querySelector('li:first-child'); } lastLi = list.removeChild(firstLi); list.appendChild(lastLi); let lis = list.querySelectorAll('li'); let activeIndex = lis[centerIndex].getAttribute('index'); if (index == activeIndex) { break; } } updateIndicators(); } }); } // インジケーターをクリックしたときのイベントリスナー 2 // Event listener 2 for clicking on indicators if (params.enableIndicatorEvent && !params.indicatorEventTypeQuick) { indicatorsContainer.addEventListener('click', (event) => { if (animating) return; if (event.target.classList.contains('indicator')) { clearTimeout(startTimer); animationPaused = true; const index = parseInt(event.target.getAttribute('data-index')); const lis = list.querySelectorAll('li'); const activeIndex = lis[centerIndex].getAttribute('index'); let l = index - activeIndex; if (l == 0) { return; } if (l < 0) { l = countLi + l; } async function moveNext() { if (animating) { return; } await animateMargin(); await delay(params.animationDuration * 2); l--; if (l) { moveNext(); } } moveNext(); } }); } // .sliders 内の最初と最後の <li> 要素がはみ出すことなく収まっているかどうかを確認する関数 // Check if the first and last <li> elements in .sliders fit together without overflowing function isCarouselInViewport() { const carousel = document.getElementById(params.id); if (!carousel) { console.error('Carousel element not found.'); return false; } const sliders = carousel.querySelector('.sliders'); if (!sliders) { console.error('Sliders element not found within the carousel.'); return false; } const firstLi = sliders.querySelector('li:first-child'); const lastLi = sliders.querySelector('li:last-child'); const rect = sliders.getBoundingClientRect(); const firstLiRect = firstLi.getBoundingClientRect(); const lastLiRect = lastLi.getBoundingClientRect(); if (firstLiRect.left < rect.left || lastLiRect.right > rect.right) { return false; } return true; } // margin を変更してアニメーション // Animate by changing the margin async function animateMargin() { if (isCarouselInViewport()) { start(); return; } animating = true; clearTimeout(startTimer); // 先頭のli要素を取得 // Get the first li element if (isEven) { firstLi = list.querySelector('li:nth-child(2)'); } else { firstLi = list.querySelector('li:first-child'); } // 要素の幅を取得 // Get the width of the element width = firstLi.offsetWidth; // 要素の幅(border と padding を含む) maxWidth = width * -2; // 先頭のli要素のクローンを作成 // Create a clone of the first li element // アニメーションの設定 // Animation settings cloneEndLi = firstLi.cloneNode(true); cloneHeadLi = cloneEndLi.cloneNode(true); // 複製を作成 // Create a clone cloneHeadLi.style.marginLeft = 0; list.appendChild(cloneEndLi); // 末尾に追加 // Add to the end list.insertBefore(cloneHeadLi, list.firstElementChild); // 先頭に追加 // Add to the beginning // 先頭のli要素のアニメーション // Animation of the first li element requestAnimationFrame(cloneHeadLiAnimation); } // 逆方向のアニメーションを開始 // Start animation in reverse direction function animateReverseMargin() { if (isCarouselInViewport()) { return; } animating = true; clearTimeout(startTimer); // 最後のli要素を取得 // Get the last li element lastLi = list.querySelector('li:last-child'); // 要素の幅を取得 // Get the width of the element width = lastLi.offsetWidth; // 要素の幅(border と padding を含む) // 最後のli要素のクローンを作成 // Create a clone of the last li element // アニメーションの設定 // Animation settings cloneEndLi = lastLi.cloneNode(true); cloneEndLi.style.marginRight = 0; cloneHeadLi = cloneEndLi.cloneNode(true); // 複製を作成 // Create a clone list.appendChild(cloneEndLi); // 末尾に追加 // Add to the end if (isEven) { // 2つ目に挿入 // Insert as the second element const secondChild = list.children[1]; // インデックス1の子要素を取得 // Get the child element at index 1 list.insertBefore(cloneHeadLi, secondChild); } else { list.insertBefore(cloneHeadLi, list.firstElementChild); // 先頭に追加 // Add to the beginning } // 最後のli要素のアニメーション // Animation of the last li element requestAnimationFrame(reverseCloneEndLiAnimation); } let animationStartTime = 0; function calc(timestamp) { if (animationStartTime == 0) { animationStartTime = timestamp; } const elapsed = timestamp - animationStartTime; const pxPerMs = maxWidth / params.animationDuration; // rate let l = pxPerMs * elapsed; // console.log('elapsed', elapsed, 'pxPerMs', pxPerMs, 'l', l + 'px > ', max); if (l < maxWidth) { l = maxWidth; } return l; } // 最後のli要素のアニメーション // Animation of the last li element async function cloneHeadLiAnimation(timestamp) { const l = calc(timestamp); cloneHeadLi.style.marginLeft = l + 'px'; if (l > maxWidth) { requestAnimationFrame(cloneHeadLiAnimation); } else { animationStartTime = 0; list.removeChild(cloneHeadLi); list.removeChild(firstLi); animating = false; start(); } } // 最後のli要素の逆方向のアニメーション // Reverse animation of the last li element async function reverseCloneEndLiAnimation(timestamp) { const l = calc(timestamp); cloneEndLi.style.marginRight = l + 'px'; if (l > maxWidth) { requestAnimationFrame(reverseCloneEndLiAnimation); } else { animationStartTime = 0; list.removeChild(cloneEndLi); list.removeChild(lastLi); animating = false; start(); } } // アニメーションループ // Animation loop function start() { if (animating) return; // インジケーターを更新 // Update the indicators updateIndicators(); if (isCarouselInViewport()) { showChangeContentButton(false); showIndicator(false); } else { showChangeContentButton(true); showIndicator(true); } // アニメーションが一時停止していたら何もしない // If animation is paused, do nothing if (animationPaused) return; startTimer = setTimeout(() => { animateMargin(); }, params.waitDuration); } function delay(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } // 開始 // Start // ドットインジケーターを生成 // Create dot indicators createIndicators(); start(); } |
Screenshot: