simple responsive Image slideshow in pure javascript

  Рет қаралды 68,882

The WebShala

The WebShala

Күн бұрын

Пікірлер: 119
@hmza-themes4786
@hmza-themes4786 4 жыл бұрын
Thank you bro , can we make it auto-play ?
@TheWebShala
@TheWebShala 4 жыл бұрын
var slides=document.querySelector('.slider-items').children; var nextSlide=document.querySelector(".right-slide"); var prevSlide=document.querySelector(".left-slide"); var totalSlides=slides.length; var index=0; nextSlide.onclick=function () { next("next"); resetTimer(); } prevSlide.onclick=function () { next("prev"); resetTimer(); } function next(direction){ if(direction=="next"){ index++; if(index==totalSlides){ index=0; } } else{ if(index==0){ index=totalSlides-1; } else{ index--; } } for(i=0;i
@AbdulrahmanBitar-k9j
@AbdulrahmanBitar-k9j 4 жыл бұрын
@@TheWebShala thank yoyu verry much
@sahiraahamed
@sahiraahamed 2 жыл бұрын
Helpfulll😊✌
@tranhai625
@tranhai625 3 жыл бұрын
83 / 5000 Kết quả dịch Thank you very much. Here is the most helpful slide show tutorial video I've ever seen.
@TheWebShala
@TheWebShala 3 жыл бұрын
Thank you too
@zackmcintosh-west2211
@zackmcintosh-west2211 Жыл бұрын
Thanks so much for your tutorial and source code! Really like what you have done - tidy, minimal and elegant. Could you please explain how to change the time that each slide is displayed?
@ProOnlineLaravel
@ProOnlineLaravel 2 жыл бұрын
You are a very smart programmer
@TheWebShala
@TheWebShala 2 жыл бұрын
thanks.
@oguzturkyilmaz543
@oguzturkyilmaz543 10 ай бұрын
Thank you very much
@kaeftrinsandy985
@kaeftrinsandy985 4 жыл бұрын
Thank you my brother
@TheWebShala
@TheWebShala 4 жыл бұрын
You are welcome
@mpsamy_vj752
@mpsamy_vj752 4 жыл бұрын
Amezing 👏
@TheWebShala
@TheWebShala 4 жыл бұрын
Thank you
@RendyEunike
@RendyEunike 4 жыл бұрын
you got hi and thanks from indonesian! thank you so much for helping me learning
@TheWebShala
@TheWebShala 4 жыл бұрын
Happy to hear that!
@karamveersachdeva935
@karamveersachdeva935 4 жыл бұрын
Simple and awesome
@sandeshbhujang5397
@sandeshbhujang5397 3 жыл бұрын
Good one
@TheWebShala
@TheWebShala 3 жыл бұрын
thank you
@Gh8st
@Gh8st 4 жыл бұрын
wow! es increíble
@TheWebShala
@TheWebShala 4 жыл бұрын
Thank you
@hemantsingh5913
@hemantsingh5913 4 жыл бұрын
Very nice video 👌
@TheWebShala
@TheWebShala 4 жыл бұрын
Thanks a lot
@ArtOfFun
@ArtOfFun 4 жыл бұрын
*Perfect work. Thanks!*
@andreafilms_
@andreafilms_ 2 жыл бұрын
what can i do if the image is cropped cause it is too little?
@TheWebShala
@TheWebShala 2 жыл бұрын
Do Img width 100%
@andreafilms_
@andreafilms_ 2 жыл бұрын
@@TheWebShala where? sry if i ask because it's not working
@andreafilms_
@andreafilms_ 2 жыл бұрын
@@TheWebShala it worked thx
@zainulkhan8381
@zainulkhan8381 3 жыл бұрын
sir can u explain me what does next("next") next("prev")means
@rafar9937
@rafar9937 3 жыл бұрын
very simple nice slider, how i can add fade effect to this? just to do something with opacity?
@MdNaimurRahmanHera
@MdNaimurRahmanHera 3 жыл бұрын
Thanks for the source codes ❤
@Pablotroll100
@Pablotroll100 4 жыл бұрын
It's perfect thank u!!
@katakslim
@katakslim 3 жыл бұрын
Thank you sir for helping my project.
@codeninja7653
@codeninja7653 2 жыл бұрын
This is really simple and helpful for me. Thank you.🙏
@TheWebShala
@TheWebShala 2 жыл бұрын
Glad it was helpful!
@jefrisaragih390
@jefrisaragih390 3 жыл бұрын
can you help me? I am confused about making a slide show that can be clicked and brings up a lightbox
@TheWebShala
@TheWebShala 3 жыл бұрын
lightbox slideshow ?
@brightamponsah7946
@brightamponsah7946 4 жыл бұрын
impressive
@ahmedkasu5207
@ahmedkasu5207 4 жыл бұрын
hi! i have used the code with about 7 pictures. it works well but the problem is it does not reset after you slide the last picture. how can i fix that?
@TheWebShala
@TheWebShala 4 жыл бұрын
any error in console ?
@ahmedkasu5207
@ahmedkasu5207 4 жыл бұрын
@@TheWebShala no any errors on the console
@elzovoz3039
@elzovoz3039 4 жыл бұрын
Me too, in console said slide[index] is undefined when I click on prevBtn.
@TheWebShala
@TheWebShala 4 жыл бұрын
Review your code, download source code From description
@elzovoz3039
@elzovoz3039 4 жыл бұрын
@@TheWebShala fix already, it's because I use meta charset = utf-8. Sorry for troubling, I'm noob in this
@foxtv7021
@foxtv7021 Жыл бұрын
Hi Please asked how to make smooth transition to another picture I keep picturesn in array[ ] And move it by increasing index by1 But i disnt now what to add for have smooth transition to another picture in the next and back buttons
@raniaayad4285
@raniaayad4285 3 жыл бұрын
It's great thank you...but l need to put more than one slider in the same page but the second one is just not working ..can you help me please??
@TheWebShala
@TheWebShala 3 жыл бұрын
i will make this tutorial in future
@raniaayad4285
@raniaayad4285 3 жыл бұрын
@@TheWebShala thank you
@RandomGuy34-j1u
@RandomGuy34-j1u 5 жыл бұрын
Great
@TheWebShala
@TheWebShala 5 жыл бұрын
Thanks
@karamveersachdeva935
@karamveersachdeva935 4 жыл бұрын
We can use translate in animation and make it look like a slider
@TheWebShala
@TheWebShala 4 жыл бұрын
Yes
@AA-gt8rc
@AA-gt8rc 3 жыл бұрын
Nice sir
@TheWebShala
@TheWebShala 3 жыл бұрын
Thank you
@ahsaankhan3833
@ahsaankhan3833 3 жыл бұрын
Thank you bro, it's awesome
@TheWebShala
@TheWebShala 3 жыл бұрын
Welcome 😊
@matheuseli165
@matheuseli165 3 жыл бұрын
Thank you so much for this!
@TheWebShala
@TheWebShala 3 жыл бұрын
Glad it was helpful!
@jahirrana8879
@jahirrana8879 4 жыл бұрын
Thank You 😍
@princedube8332
@princedube8332 4 жыл бұрын
does it respond to screen size
@TheWebShala
@TheWebShala 4 жыл бұрын
?
@RAVIABHISHEKme
@RAVIABHISHEKme 4 жыл бұрын
how to use it for blogger post?
@gouravahuja3652
@gouravahuja3652 4 жыл бұрын
When i click on next button , it shows "next" in console and when i click on prev button , it shows "prev" It must have been from next ("next")
@TheWebShala
@TheWebShala 4 жыл бұрын
check code link in description
@anirajshahi1036
@anirajshahi1036 4 жыл бұрын
I copied all your codes but error was shown in the console. Could you please help me out ? error: Uncaught ReferenceError: nextSlide is not defined
@TheWebShala
@TheWebShala 4 жыл бұрын
Send screenshot
@justin5314
@justin5314 4 жыл бұрын
my .children got problem can i ask why?
@TheWebShala
@TheWebShala 4 жыл бұрын
problem ?
@justin5314
@justin5314 4 жыл бұрын
@@TheWebShala the JavaScript I put .children but when I inspect it show that the children is an error
@TheWebShala
@TheWebShala 4 жыл бұрын
@@justin5314 what is error ?
@justin5314
@justin5314 4 жыл бұрын
@@TheWebShala when I press inspect and console there is a line say that 'uncaught TypeError : cannot read property 'children' of null
@TheWebShala
@TheWebShala 4 жыл бұрын
@@justin5314 send me error screen shot through fb page
@specialstreetfood5324
@specialstreetfood5324 3 жыл бұрын
what is in this called function and the direction variable? direction=="next".... how the condition check?
@donnyrosales307
@donnyrosales307 3 жыл бұрын
why does it says this "Uncaught TypeError: Cannot read properties of null (reading 'onclick')"
@TheWebShala
@TheWebShala 3 жыл бұрын
please check, the element you have set the event listener is exist or not in your html.
@timmytim9054
@timmytim9054 4 жыл бұрын
Nice music.
@federicocalo4776
@federicocalo4776 3 жыл бұрын
Thanks, but i have a little problem, it doesn't work with the right buttom
@TheWebShala
@TheWebShala 3 жыл бұрын
need help ? msg me on fb page
@sujeetlohar2673
@sujeetlohar2673 2 жыл бұрын
how to disable prev/next arrow on first/last slider???
@idirashahidaramli5680
@idirashahidaramli5680 4 жыл бұрын
i dont know why my notepad said that there is error at children in js file.. hmm i dont get it 😢
@idirashahidaramli5680
@idirashahidaramli5680 4 жыл бұрын
oh mai god hahahaha i found my error 😅😅 thank you.. your tutorial is awesome 😊
@pipi7607
@pipi7607 4 жыл бұрын
@@idirashahidaramli5680 and maybe change to Visual studio code for a better understanding of errors
@mackynikat8833
@mackynikat8833 4 жыл бұрын
thanks...
@mackynikat8833
@mackynikat8833 4 жыл бұрын
but sir can you use time interval with that like every 3s it will automatically scrolled in the next index? pls reply asap. needed tips for advance
@tdakmolentertain1307
@tdakmolentertain1307 4 жыл бұрын
thanks
@arrvimal4043
@arrvimal4043 4 жыл бұрын
How do automatic slider
@TheWebShala
@TheWebShala 4 жыл бұрын
var slides=document.querySelector('.slider-items').children; var nextSlide=document.querySelector(".right-slide"); var prevSlide=document.querySelector(".left-slide"); var totalSlides=slides.length; var index=0; nextSlide.onclick=function () { next("next"); resetTimer(); } prevSlide.onclick=function () { next("prev"); resetTimer(); } function next(direction){ if(direction=="next"){ index++; if(index==totalSlides){ index=0; } } else{ if(index==0){ index=totalSlides-1; } else{ index--; } } for(i=0;i
@arrvimal4043
@arrvimal4043 4 жыл бұрын
@@TheWebShala Thanks a Lot
@Ragavsir
@Ragavsir 2 жыл бұрын
Js:4 undefined please help me Length problem
@TheWebShala
@TheWebShala 2 жыл бұрын
Msg me on fb
@nikunjgupta2878
@nikunjgupta2878 3 жыл бұрын
background music name??
@TheWebShala
@TheWebShala 3 жыл бұрын
which one ?
@domaisan1702
@domaisan1702 4 жыл бұрын
The music is great 😅
@TheWebShala
@TheWebShala 4 жыл бұрын
thanks
@argaming9548
@argaming9548 4 жыл бұрын
Hey, I am just try to make a slider but my image is not sliding when i click on left button can you guys please explain Slider2 *{ margin: 0; padding: 0; } #container{ position: absolute; width: 1000px; height: 500px; border: 1px solid red; overflow: hidden; left: 200px; top: 20px; } #container_img img{ width: 1000px; height: 500px; background-size: cover; } #Symbol img{ position: absolute; width: 50px; height: 50px; top: 250px; left: 110px; cursor: pointer; } #Symbol #Symbol2 { left: 1250px; } var scroll1 = document.querySelector("#container_img").children; var left = document.querySelector("#Symbol1"); var right = document.querySelector("#Symbol2"); let index = 0; left.addEventListener("click",function(){ leftSlide() }) right.addEventListener("click",function(){ rightSlide() }) function leftSlide(){ if(index == scroll1.length-1){ index = 0; } else{ index++; } changeSlide(); } function changeSlide(){ for(let i=0; i
@dynamic_damian
@dynamic_damian 3 жыл бұрын
Thanks but mine it not working
@TheWebShala
@TheWebShala 3 жыл бұрын
Check description for code
@diegofernandez1489
@diegofernandez1489 4 жыл бұрын
Uncaught ReferenceError: i is not defined at next (effect.js:38) at HTMLDivElement.nextSlide.onclick
@diegofernandez1489
@diegofernandez1489 4 жыл бұрын
(effect.js:38) for(i=0;i
@TheWebShala
@TheWebShala 4 жыл бұрын
@@diegofernandez1489 define i, let i
@mateuszbronis3515
@mateuszbronis3515 4 жыл бұрын
JS doesn't work bro
@TheWebShala
@TheWebShala 4 жыл бұрын
what is error?
@mateuszbronis3515
@mateuszbronis3515 4 жыл бұрын
The WebShala The code I wrote is identical, but the button don’t react
@mateuszbronis3515
@mateuszbronis3515 4 жыл бұрын
@@TheWebShala Do you have a code somewhere to download?
@TheWebShala
@TheWebShala 4 жыл бұрын
drive.google.com/file/d/1qSLr9Bdapj6szcGKaxhMXLGlcFpTPGtx/view?usp=sharing
@mateuszbronis3515
@mateuszbronis3515 4 жыл бұрын
The WebShala I found the solution. When I wrote ‘onClick’ like this it was error. When I wrote ‘onclick’ everything it’s ok. Thanks you for your help 👊🏻
@altafhossainsadik4962
@altafhossainsadik4962 2 жыл бұрын
Source code?
@TheWebShala
@TheWebShala 2 жыл бұрын
Check description for source code
@altafhossainsadik4962
@altafhossainsadik4962 2 жыл бұрын
@@TheWebShala Thanks a lot
@SairajMane-nf6sn
@SairajMane-nf6sn 4 жыл бұрын
Try to explain
@nikunjgupta2878
@nikunjgupta2878 3 жыл бұрын
background music name??
Direction Aware Hover Effect using by Javascript
15:23
The WebShala
Рет қаралды 2,7 М.
Image Slider Project - HTML,CSS and Javascript | Logic First Tamil
18:55
Logic First Tamil
Рет қаралды 19 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 37 МЛН
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 138 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 17 МЛН
Pure CSS Image Slider  Using Only HTML & CSS
7:39
Lama Code
Рет қаралды 182 М.
How To Create An Image Slider In HTML, CSS & Javascript
24:42
developedbyed
Рет қаралды 480 М.
Image Carousel using HTML, CSS,  Vanilla JavaScript
11:40
FaizanLess
Рет қаралды 3 М.
HTML and CSS Project Tutorial: Pure CSS Image Slider
7:41
Skillthrive
Рет қаралды 343 М.
Бургер меню - просто. HTML + CSS + JS
22:34
Александр Дудукало
Рет қаралды 41 М.
CSS Slider: Image Slider with controls using CSS3 Only
9:50
Web Decorator
Рет қаралды 306 М.
How To Load Images Like A Pro
15:48
Web Dev Simplified
Рет қаралды 386 М.
Pure CSS Responsive Image Slider - HTML5/CSS3 Tutorial
8:36
w3newbie
Рет қаралды 381 М.
Image Slider | Javascript Beginner Project Tutorial
18:01
CodePhilip
Рет қаралды 3,6 М.