This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="gallery__container"> | |
<img src="https://images.unsplash.com/photo-1602116224649-c3b66d507eef?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80" class="gallery__item"/> | |
<img src="https://images.unsplash.com/photo-1597816165828-56c53e9394f4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80" class="gallery__item"/> | |
<img src="https://images.unsplash.com/photo-1590080603530-ab883f5f5763?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80" class="gallery__item"/> | |
<img src="https://images.unsplash.com/photo-1574352524385-e8eb66309d43?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80" class="gallery__item"/> | |
<img src="https://images.unsplash.com/photo-1610878180933-123728745d22?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=200&q=80" class="gallery__item"/> | |
<img src="http |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const container = document.querySelector('.gallery__container'); | |
const prevButton = document.querySelector('.gallery__prev'); | |
const nextButton = document.querySelector('.gallery__next'); | |
prevButton.onclick = () => { | |
const items = document.querySelectorAll('.gallery__item'); | |
container.insertBefore(items[items.length - 1], items[0]); | |
}; | |
nextButton.onclick = () => { |
OlderNewer