Your code is simple, functional and very helpful. That's exactly what I was looking for. Thank you!
@Vindicatoranimz_shorts Жыл бұрын
You know the pain when it doesn't work but it worked for me You've got to be careful in JavaScript if not you'll be frustrated Thanks this was so helpful
@elsantiago5804 Жыл бұрын
So fast and clear, flawless work! Thank you dude!
@zigaudrey3 жыл бұрын
I know nothing about Javascript but this is a great base for programming image changer. Now, time for effects.
@DirtMankee2 жыл бұрын
Thank you man. I was trying to do exactly like this but I got stuck on the if() part. I downloaded your code and analyzed it a bit and then understood it.
@auroth6805 Жыл бұрын
Took me a while to get the video I needed for this project ^-^
@nem91879 ай бұрын
really easy to implement into code! Thank you so much
@tegalucky3832 жыл бұрын
so simple, so easy to understand.....good one
@yuriyzadorozhnyi38494 ай бұрын
Дякую Вам друже це було круто!
@phyrom64382 жыл бұрын
Nice easy to understand thanku
@M.RIYAS.GHOST.OF.SPARTA Жыл бұрын
Thanks 👍🏻
@parvezkalia46483 жыл бұрын
what a tutorial.. thanks for this tutorial
@luizricardo65343 жыл бұрын
Just the way i needed, thanks so much o/
@Kyogoyt2 жыл бұрын
Hi, your code is super cool, but i need one extra thing. I need the text 1 of 5. When im going to the 2nd image then it shows me 2 of 5. You know what i mean? Do you know how i can do this?
@satyamkatiyar77143 жыл бұрын
than u very much for this amazing video
@adamsaime-desire72404 жыл бұрын
Good job guy, your video has been very helpful for me, thank you !!! :)
@pratapbairagi78243 жыл бұрын
Return function is not working! I have cross checked many time, didn't get any fault in code. Any solution for this?
@edilfonsocajun48374 жыл бұрын
@Web Zone How can I use this code to insert another slideshow in the same page (one beside the other); having the previous and next buttons controlling its respective slideshow.
@nyamcat83342 жыл бұрын
Thank you!
@5minutesfoodtips5283 жыл бұрын
Good bro
@סטסאנטיפוב-ק9ב3 жыл бұрын
ot works with maps too????
@admed6013 Жыл бұрын
Thank you
@jakabsislol81692 жыл бұрын
hello why when i tried the programm i had the button "prev" was above the button "next" pls i need help on this as quickly as possible plssss
@kashifkhiАй бұрын
all function is work but one image select for zoom how is we can do it
@sony32464 жыл бұрын
How do you create this same code with multiple sliders on one page?
@petrkorecky43223 жыл бұрын
Thanks a lot :)
@devabdee2 жыл бұрын
great
@nages15493 жыл бұрын
Tq super
@robertoblanco1922 жыл бұрын
Hi, can someone explain me next code? if(i
@MBHL-ug7ln10 ай бұрын
"...i represents the current index of the image being displayed in the slider. i
@riturajjha3 жыл бұрын
How to animate clips
@arditbytyi3464 жыл бұрын
Thanks alot! :)
@hstecnologia Жыл бұрын
cara muito bom
@AdityaSharma-gh3jr3 жыл бұрын
While sliding to next one of my image goes hide Cant find any errors Loop is working fine
@goat554510 ай бұрын
currently having the same, after the last image in the array it hides. Did you manage to fix it?
@ashmusic6214 жыл бұрын
Can someone explain to me what's going on in the loop? I'm beginner & I'm unable to understand what is going on?
@sabihahsalleh39514 жыл бұрын
Im new to javascript, but i guess the loop is similar to other programming language like c++ etc. 'If' statement is when you want to execute next code if the condition is true. 'i' was declared as a variable with initial value 0. In function prev(), if the value of 'i' is equal or smaller than 0 (condition), then value of 'i' will be equal to image.length (the value is equal to the last picture), after that decrement the value 'i' by one for every loops and return the value function setimg(). The same concept for function next() too. Sorry if im mistaken and for my bad english.