Javascript image carousel
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
-1
down vote
favorite
I wrote the following code for creating a simple image carousel, that shows multiple images at the same time in the same order, but starting at a different position when the "next" or "prev" button is clicked.
This code works, but does it contradict programming principles and algorithms?
Is there a better solution?
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
javascript
add a comment |Â
up vote
-1
down vote
favorite
I wrote the following code for creating a simple image carousel, that shows multiple images at the same time in the same order, but starting at a different position when the "next" or "prev" button is clicked.
This code works, but does it contradict programming principles and algorithms?
Is there a better solution?
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
javascript
1
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10
add a comment |Â
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I wrote the following code for creating a simple image carousel, that shows multiple images at the same time in the same order, but starting at a different position when the "next" or "prev" button is clicked.
This code works, but does it contradict programming principles and algorithms?
Is there a better solution?
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
javascript
I wrote the following code for creating a simple image carousel, that shows multiple images at the same time in the same order, but starting at a different position when the "next" or "prev" button is clicked.
This code works, but does it contradict programming principles and algorithms?
Is there a better solution?
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
var images = [
"1.jpg",
"2.jpg",
"3.jpg"
];
let slider = document.getElementById("slider");
function next()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;
);
slider.setAttribute("src",images[nextIndex]);
function prev()
images.forEach((item , index)=>
if(slider.getAttribute("src") == item)
if(index != 0)
prevIndex = index-1;
else
prevIndex = images.length-1;
);
slider.setAttribute("src",images[prevIndex]);
<div>
<button onClick = "prev()"> Prev </button>
<img id="slider" src="1.jpg"
width="200px" height="100px"/>
<button onClick = "next()"> Next </button>
</div>
javascript
edited Feb 8 at 21:16
Snowbody
7,7371343
7,7371343
asked Feb 8 at 11:29
mohsen hasani
133
133
1
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10
add a comment |Â
1
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10
1
1
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
There are several problems with your code right now.
Don't create global variables.
nextIndex
andprevIndex
are both globals that are implicitly created when you first assign to them.Don't abuse not using braces on
if
statements. It is fine to skip them for a very simple statement (assuming it is allowed in your style guide) but nesting multipleif
s without braces is a recipe for disaster.// Much safer
if (slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;Don't use
setAttribute
/getAttribute
if you are accessing a standard property on an element.slider.src
is shorter and easier to read thanslider.getAttribute('src')
.Consider making your code more modular. What happens if you now want two sliders on the page? Ideally, it should just be another line of code to add the functionality (or maybe even no more lines of code!)
Consider preloading images. TimSparrow mentioned this in the comments - with your current code the next image won't be loaded until the user clicks on the next button. This can result in a bad experience on slow connections.
There are a few more things I could say, but I believe it would be more helpful to just provide an alternative implementation.
This implementation has a couple advantages:
- You can just add another
image-slider
div wherever you want another set of images. - By using an internal hidden
div
for storing the images, you automatically get preloaded images.
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is thediv
with the classimage-slider
in the html, take a look at whatdocument.querySelectorAll('.image-slider')
prints when you execute it in the dev console.
â Gerrit0
Feb 9 at 16:17
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
There are several problems with your code right now.
Don't create global variables.
nextIndex
andprevIndex
are both globals that are implicitly created when you first assign to them.Don't abuse not using braces on
if
statements. It is fine to skip them for a very simple statement (assuming it is allowed in your style guide) but nesting multipleif
s without braces is a recipe for disaster.// Much safer
if (slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;Don't use
setAttribute
/getAttribute
if you are accessing a standard property on an element.slider.src
is shorter and easier to read thanslider.getAttribute('src')
.Consider making your code more modular. What happens if you now want two sliders on the page? Ideally, it should just be another line of code to add the functionality (or maybe even no more lines of code!)
Consider preloading images. TimSparrow mentioned this in the comments - with your current code the next image won't be loaded until the user clicks on the next button. This can result in a bad experience on slow connections.
There are a few more things I could say, but I believe it would be more helpful to just provide an alternative implementation.
This implementation has a couple advantages:
- You can just add another
image-slider
div wherever you want another set of images. - By using an internal hidden
div
for storing the images, you automatically get preloaded images.
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is thediv
with the classimage-slider
in the html, take a look at whatdocument.querySelectorAll('.image-slider')
prints when you execute it in the dev console.
â Gerrit0
Feb 9 at 16:17
add a comment |Â
up vote
2
down vote
accepted
There are several problems with your code right now.
Don't create global variables.
nextIndex
andprevIndex
are both globals that are implicitly created when you first assign to them.Don't abuse not using braces on
if
statements. It is fine to skip them for a very simple statement (assuming it is allowed in your style guide) but nesting multipleif
s without braces is a recipe for disaster.// Much safer
if (slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;Don't use
setAttribute
/getAttribute
if you are accessing a standard property on an element.slider.src
is shorter and easier to read thanslider.getAttribute('src')
.Consider making your code more modular. What happens if you now want two sliders on the page? Ideally, it should just be another line of code to add the functionality (or maybe even no more lines of code!)
Consider preloading images. TimSparrow mentioned this in the comments - with your current code the next image won't be loaded until the user clicks on the next button. This can result in a bad experience on slow connections.
There are a few more things I could say, but I believe it would be more helpful to just provide an alternative implementation.
This implementation has a couple advantages:
- You can just add another
image-slider
div wherever you want another set of images. - By using an internal hidden
div
for storing the images, you automatically get preloaded images.
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is thediv
with the classimage-slider
in the html, take a look at whatdocument.querySelectorAll('.image-slider')
prints when you execute it in the dev console.
â Gerrit0
Feb 9 at 16:17
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
There are several problems with your code right now.
Don't create global variables.
nextIndex
andprevIndex
are both globals that are implicitly created when you first assign to them.Don't abuse not using braces on
if
statements. It is fine to skip them for a very simple statement (assuming it is allowed in your style guide) but nesting multipleif
s without braces is a recipe for disaster.// Much safer
if (slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;Don't use
setAttribute
/getAttribute
if you are accessing a standard property on an element.slider.src
is shorter and easier to read thanslider.getAttribute('src')
.Consider making your code more modular. What happens if you now want two sliders on the page? Ideally, it should just be another line of code to add the functionality (or maybe even no more lines of code!)
Consider preloading images. TimSparrow mentioned this in the comments - with your current code the next image won't be loaded until the user clicks on the next button. This can result in a bad experience on slow connections.
There are a few more things I could say, but I believe it would be more helpful to just provide an alternative implementation.
This implementation has a couple advantages:
- You can just add another
image-slider
div wherever you want another set of images. - By using an internal hidden
div
for storing the images, you automatically get preloaded images.
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
There are several problems with your code right now.
Don't create global variables.
nextIndex
andprevIndex
are both globals that are implicitly created when you first assign to them.Don't abuse not using braces on
if
statements. It is fine to skip them for a very simple statement (assuming it is allowed in your style guide) but nesting multipleif
s without braces is a recipe for disaster.// Much safer
if (slider.getAttribute("src") == item)
if(index != images.length-1)
nextIndex = index+1;
else
nextIndex = 0;Don't use
setAttribute
/getAttribute
if you are accessing a standard property on an element.slider.src
is shorter and easier to read thanslider.getAttribute('src')
.Consider making your code more modular. What happens if you now want two sliders on the page? Ideally, it should just be another line of code to add the functionality (or maybe even no more lines of code!)
Consider preloading images. TimSparrow mentioned this in the comments - with your current code the next image won't be loaded until the user clicks on the next button. This can result in a bad experience on slow connections.
There are a few more things I could say, but I believe it would be more helpful to just provide an alternative implementation.
This implementation has a couple advantages:
- You can just add another
image-slider
div wherever you want another set of images. - By using an internal hidden
div
for storing the images, you automatically get preloaded images.
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
function createSlider(container)
const images = container.querySelectorAll('.images > img');
const displayImage = container.querySelector('[data-display]')
// State
let imageIndex;
function setImage(index)
imageIndex = index;
displayImage.src = images[index].src;
// Show the first image initially
setImage(0);
// Button listener
container.addEventListener('click', event =>
if (event.target.hasAttribute('data-prev'))
setImage(imageIndex === 0 ? images.length - 1 : imageIndex - 1)
else if (event.target.hasAttribute('data-next'))
setImage(imageIndex === images.length - 1 ? 0 : imageIndex + 1)
);
document.querySelectorAll('.image-slider').forEach(createSlider);
.image-slider .images
display: none;
<div class="image-slider">
<div class="images">
<img src="https://placeimg.com/200/100/animals">
<img src="https://placeimg.com/200/100/arch">
<img src="https://placeimg.com/200/100/nature">
</div>
<button data-prev>Prev</button>
<img data-display width="200px" height="100px">
<button data-next>Next</button>
</div>
answered Feb 8 at 20:58
Gerrit0
2,6701518
2,6701518
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is thediv
with the classimage-slider
in the html, take a look at whatdocument.querySelectorAll('.image-slider')
prints when you execute it in the dev console.
â Gerrit0
Feb 9 at 16:17
add a comment |Â
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is thediv
with the classimage-slider
in the html, take a look at whatdocument.querySelectorAll('.image-slider')
prints when you execute it in the dev console.
â Gerrit0
Feb 9 at 16:17
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
thanks , it's really very good . but i don't know source of container that placed as a argument in create slider function ; it's same document object? how? forgive me i am a beginner :(
â mohsen hasani
Feb 9 at 9:12
The container element is the
div
with the class image-slider
in the html, take a look at what document.querySelectorAll('.image-slider')
prints when you execute it in the dev console.â Gerrit0
Feb 9 at 16:17
The container element is the
div
with the class image-slider
in the html, take a look at what document.querySelectorAll('.image-slider')
prints when you execute it in the dev console.â Gerrit0
Feb 9 at 16:17
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f187088%2fjavascript-image-carousel%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
The name "Slider" is not entirely correct for this, as it does not provide animation.
â TimSparrow
Feb 8 at 12:09
Consider preloading images, as a user will see them loading when they press buttons, which is not good, especially on slow connections
â TimSparrow
Feb 8 at 12:10