Responsive Slider Using HTML & CSS Only

  Рет қаралды 249,307

Anna Blok — Frontend Tutorial

Anna Blok — Frontend Tutorial

Күн бұрын

Пікірлер: 176
@dabelef
@dabelef 3 жыл бұрын
Awesome work Anna, thanku so much, it has been super useful! p.d: I noticed the left arrow wasn't working, figured out if you invert the order of the numbers like shown below it works as it's supposed to:) #slide1:checked ~ #controls label:nth-last-child(1), #slide2:checked ~ #controls label:nth-last-child(4), #slide3:checked ~ #controls label:nth-last-child(3), #slide4:checked ~ #controls label:nth-last-child(2){ background: url(Images/LeftArrow.svg) no-repeat; float: left; margin: 0 0 0 -50px; display: block; }
@luonggg7985
@luonggg7985 2 жыл бұрын
thank you so much
@sanjeevd6872
@sanjeevd6872 Жыл бұрын
Neenga Tamil ah
@pytonbengalski9970
@pytonbengalski9970 Жыл бұрын
thank you
@JoaoPaulo-ox6pr
@JoaoPaulo-ox6pr 2 жыл бұрын
after watching this video i now know. i need to learn pseudo-(selectors,elements,classes) this simply deserves a nobel prize for clearing my mind
@etherealgem1682
@etherealgem1682 2 жыл бұрын
I used a modified version of this for my site. If you want to convert it to a slider that automatically cycles between the 4 slides, you need to add some javascript. Include the following in your HTML header: var autoplayInterval = 10000; var autoplayTimer = null; var autoplay = true; var newIndex = 1; if (autoplay) { autoplayTimer = setInterval(function() { newIndex++; navigateSlider(); }, autoplayInterval); } function resetSlider() { clearInterval(autoplayTimer); } function navigateSlider() { const slide1 = document.getElementById('slide1'); const slide2 = document.getElementById('slide2'); const slide3 = document.getElementById('slide3'); const slide4 = document.getElementById('slide4'); if (newIndex == 1) { slide1.checked = true; } else if (newIndex == 2) { slide2.checked = true; } else if (newIndex == 3) { slide3.checked = true; } else if (newIndex == 4) { slide4.checked = true; newIndex = 0; } } Note that the first variable (autoplayInterval) is the time between slide cycles. By default, I set it to 10 seconds. Also, you may want to add "onclick="resetSlider()"" to your bullet/control labels, so that if someone navigates through the slides, they stop auto cycling (e.g.: ). Enjoy!
@andrericardo9660
@andrericardo9660 4 жыл бұрын
Hi, congratulations on the tutorial, it helped me a lot. On the 'back' button I set the numbers to nth-last-child (). I made the following change below in the css. # slide1: checked ~ #controls label: nth-last-child (1), # slide2: checked ~ #controls label: nth-last-child (4), # slide3: checked ~ #controls label: nth-last-child (3), # slide4: checked ~ #controls label: nth-last-child (2)
@hazretiFrat
@hazretiFrat 4 жыл бұрын
thanks
@dullestimp3475
@dullestimp3475 4 жыл бұрын
Thank you!
@stevebrzezinski3392
@stevebrzezinski3392 3 жыл бұрын
Thank You
@erickchavez4551
@erickchavez4551 3 жыл бұрын
I spent hours trying to figure out what I had done wrong. Thanks so much!
@lennartv.1529
@lennartv.1529 3 жыл бұрын
@@erickchavez4551 Where do I have to edit it? I dont get it
@montserrataguilar8055
@montserrataguilar8055 2 жыл бұрын
Your code has literally saved my life! thank youuuu!
@locorocojack
@locorocojack Жыл бұрын
if you downloaded big arrows you have to modify the background size: #slide1:checked ~ #controls label:nth-child(2), #slide2:checked ~ #controls label:nth-child(3), #slide3:checked ~ #controls label:nth-child(4), #slide4:checked ~ #controls label:nth-child(1){ background: url(right.svg) no-repeat; background-size: 50px; float:right; margin:0 -50px 0 0; display: block; }
@Phillink
@Phillink Жыл бұрын
Thank you! I was looking for someone who had the same problem...
@isaaclopez7065
@isaaclopez7065 8 ай бұрын
thank you my friend it was very helpful
@switbeee1364
@switbeee1364 6 ай бұрын
really interesting to watch even though I had no clue on most of what was happening. Really good results too
@hezbonotieno6130
@hezbonotieno6130 3 жыл бұрын
The slider in the video is different from the slider in the source code. Theirs no side buttons.
@ajdinpipo08
@ajdinpipo08 4 жыл бұрын
This is the best tutorial about slider.Great job!!
@AnnaBlok
@AnnaBlok 3 жыл бұрын
Tnx!
@yersiniaP
@yersiniaP 3 жыл бұрын
This is what I was looking for! Thanks, great! :D
@koffiemmanuelngou
@koffiemmanuelngou 4 жыл бұрын
U've got one subscriber . Great !
@Axelniraj
@Axelniraj Жыл бұрын
if Arrows are not visible then use ( background-size: cover; ) property Thnxx 🙂
@MrFreeedman
@MrFreeedman 4 жыл бұрын
в сss если поменять цирфры то будет норм перелистывать назад #slide1:checked ~ #controls label:nth-last-child(1), #slide2:checked ~ #controls label:nth-last-child(4), #slide3:checked ~ #controls label:nth-last-child(3), #slide4:checked ~ #controls label:nth-last-child(2)
@orlandog1979
@orlandog1979 4 жыл бұрын
or... #slide4:checked ~ #controls label:nth-last-child(2), #slide3:checked ~ #controls label:nth-last-child(3), #slide2:checked ~ #controls label:nth-last-child(4), #slide1:checked ~ #controls label:nth-last-child(1)
@abdelaesus6678
@abdelaesus6678 3 жыл бұрын
IMPRESSIVE! THANK YOU ANNA!
@AprilSky
@AprilSky 4 жыл бұрын
feels like I'm gonna slide to heaven
@alialhusseini2650
@alialhusseini2650 4 жыл бұрын
awesome slides. done some editing on them but overall very good thank you :D
@NinjaBlade0822
@NinjaBlade0822 3 жыл бұрын
that song is so relax
@anupkumar2736
@anupkumar2736 4 жыл бұрын
left arrow doesn't work properly.
@muhammad_zohaib936
@muhammad_zohaib936 6 ай бұрын
Thats amazing 👍🤩 You've got 1 subscriber ❤🎉
@MyGeorge1964
@MyGeorge1964 4 жыл бұрын
Anna, that was genius - perfect! I'm using it. Except, the back button does not seem to work. Will look at it later. For not it's just perfect! Thanks.
@MsPeepingTallulah
@MsPeepingTallulah 4 жыл бұрын
did you every solve the problem of the back slider?
@andrericardo9660
@andrericardo9660 4 жыл бұрын
Hello, I posted a comment with the solution I used. I made the following change below in the css. # slide1: checked ~ #controls label: nth-last-child (1), # slide2: checked ~ #controls label: nth-last-child (4), # slide3: checked ~ #controls label: nth-last-child (3), # slide4: checked ~ #controls label: nth-last-child (2)
@xs1089
@xs1089 3 жыл бұрын
@@andrericardo9660 Yeah!! It's work!
@21398403
@21398403 2 жыл бұрын
Saludos! Gracias por el aporte hay unos errores en el código que encontré por si otra persona le pasa lo mismo, el primero es en la clase .inner pusiste un line-height: 0; hay que quitarlo porque eso hace que los párrafos que pongas con mas texto se vea uno encima de otro y no se aprecia bien y estas usando en el html una clase slide-content, pero en CSS, no la modificas lo cual se puede eliminar sin problemas en el html .
@davidcastaneda4546
@davidcastaneda4546 Жыл бұрын
muchas gracias se que te esforzaste
@HERMIGNIES
@HERMIGNIES 4 жыл бұрын
Thank you from a french guy.
@nickspringer5755
@nickspringer5755 4 жыл бұрын
The music sounds like a more ambient version of Mice on Venus from Minecraft lol.
@blink182lives100
@blink182lives100 4 жыл бұрын
Hello, I am not able to get the front and back arrows to appear onto my page. . . I have reviewed the code several times I can not see why I am having this issue. The bullets work
@kreeytiv-one
@kreeytiv-one 4 жыл бұрын
wow nice just HTML , CSS you got it
@peterkovinski8476
@peterkovinski8476 4 жыл бұрын
This is for fixed number of slides. If you have more images to display, then you have to code JavaScript to modify the style sheet
@danishirshad8831
@danishirshad8831 3 жыл бұрын
How? '
@victoralmcrespo7310
@victoralmcrespo7310 4 жыл бұрын
its preatty good but the back button doesnt work
@1001-w5q
@1001-w5q 4 жыл бұрын
It does but in not a proper way :D
@xx8262
@xx8262 4 жыл бұрын
@@1001-w5q #slide1:checked ~ #controls label:nth-last-child(1), #slide2:checked ~ #controls label:nth-last-child(4), #slide3:checked ~ #controls label:nth-last-child(3), #slide4:checked ~ #controls label:nth-last-child(2) { background: url(image.flaticon.com/icons/svg/130/130882.svg) no-repeat; float:left; margin: 0 0 0 -50px; display: block; } this is what you should change to make it work right
@PedroGualandi
@PedroGualandi 4 жыл бұрын
@@xx8262 thanks! the fix worked perfectly here
@shubhamkapadia6337
@shubhamkapadia6337 3 жыл бұрын
This is Great!! 🤩🤩
@sematv121
@sematv121 5 жыл бұрын
А зачем там стрелка назад если она не работает нормально? Смотрел на codepen
@WindchesterWebDev
@WindchesterWebDev 5 жыл бұрын
Это всегда очень круто, когда подобное сделано на чистом CSS. Только вот, жаль, что в реальном проекте 99% вероятности, что никто никогда подобное не применит. Т.к. гораздо удобнее будет slick\owl. Но как концепт - да, это шикарно)
@ВадимМоскалёв-ж7б
@ВадимМоскалёв-ж7б 5 жыл бұрын
Slick\Owl, который зависим от jquery, наес
@WindchesterWebDev
@WindchesterWebDev 5 жыл бұрын
@@ВадимМоскалёв-ж7б и что?) Чем так плох jQuery? Может, это и не самый производительный инструмент, но в удобстве и количестве библиотек его пока никто не смог обойти.
@mifodiyshtulh8151
@mifodiyshtulh8151 2 жыл бұрын
нууу стрелку назад я сделал рабочей (автор забил болт, что она не пашет) осталось одно НО, у меня стрелки невидимые....
@vip.ted100
@vip.ted100 11 ай бұрын
ошибаешься мой друг, вот мне и понадобился слайдер без джава скрипта )
@WindchesterWebDev
@WindchesterWebDev 11 ай бұрын
тот самый 1%)
@triohmscorporation79
@triohmscorporation79 3 жыл бұрын
Thanks for the tutorial and code.
@PahugerPuruhitaBaiq
@PahugerPuruhitaBaiq 4 жыл бұрын
thanks for sharing this!
@idontwhy3132
@idontwhy3132 3 жыл бұрын
subbed, very helpful. Thanks
@masdetektivetv3504
@masdetektivetv3504 3 жыл бұрын
Thanks, its awesome
@davingrahadi3525
@davingrahadi3525 10 ай бұрын
hi annablok, I want to ask, I have followed your images slide tutorial correctly but I have problems here, namely the arrow keys don't work and the image won't shift, I hope you can help me :)
@cansuaydogan1493
@cansuaydogan1493 4 жыл бұрын
Thanks for nice slider video:)But I cant did it Visual Studio. How can i do in visual studio? It doesnt display regular, it displays as line by line as Slide 1, Slide 2 etc.
@alfredliew5062
@alfredliew5062 3 жыл бұрын
you are a freaking legend
@rishisharma8596
@rishisharma8596 Жыл бұрын
thank you sir
@thescribblersdiary
@thescribblersdiary 9 ай бұрын
Solved my problem. Thanks a lot
@azeuniverse3737
@azeuniverse3737 3 жыл бұрын
How change slider position. I mean top:56% or right:5% I tried it, but it didn't work
@Joker-zv8nb
@Joker-zv8nb 2 жыл бұрын
Thanks for this, help me very much!
@PedroGualandi
@PedroGualandi 4 жыл бұрын
Great work!
@AnnaBlok
@AnnaBlok 4 жыл бұрын
Thx!
@laggron2412
@laggron2412 2 жыл бұрын
thank a lot
@_cruzito.x
@_cruzito.x 3 жыл бұрын
How do I do if I want to add a fifth element to the slider?
@Elisha_GG
@Elisha_GG 2 жыл бұрын
Ваш контент прекрасен, почему у Вас так мало подсчиков остаётся загадкой.
@kaiodias5474
@kaiodias5474 3 жыл бұрын
please how to implement an automatic photo pass on this system?
@AjayKumar-gg4ds
@AjayKumar-gg4ds 10 ай бұрын
Awesome 👌💯
@ithielragnaros
@ithielragnaros 3 жыл бұрын
Muchas gracias quedo hermoso ¡
@keirembathoungamm1935
@keirembathoungamm1935 4 жыл бұрын
Left arrow key does not work properly, if you have time please check it and update as soon as possible
@nobodysperfect29
@nobodysperfect29 4 жыл бұрын
For the left arrow try this: #slide1:checked ~ #controls label:nth-last-child(4), #slide2:checked ~ #controls label:nth-last-child(4), #slide3:checked ~ #controls label:nth-last-child(3), #slide4:checked ~ #controls label:nth-last-child(2) { background: url(image.flaticon.com/icons/svg/130/130882.svg) no-repeat; float:left; margin: 0 0 0 -50px; display: block; }
@anishchristopius5502
@anishchristopius5502 4 жыл бұрын
@@nobodysperfect29 thanks bud !!
@fredyrojas7720
@fredyrojas7720 5 жыл бұрын
Genial!!!
@muhammadrifqy24
@muhammadrifqy24 3 жыл бұрын
there's something wrong with the left arrow button
@sulemanali8542
@sulemanali8542 4 жыл бұрын
thanks alot work for me
@AbduRahmanTPLP
@AbduRahmanTPLP Ай бұрын
What song for this Video? So relax
@fhxhnddhmcegvjdthk
@fhxhnddhmcegvjdthk 5 жыл бұрын
Анна, напишите пожалуйста, что за музыка играет в начале видео)
@thotanagaraju7871
@thotanagaraju7871 2 жыл бұрын
i am not getting the side buttons < likes >
@alejootorres3820
@alejootorres3820 3 жыл бұрын
Why is the back arrow not working? it only works from the third point to the first, and vice versa
@pavlekaranovic7220
@pavlekaranovic7220 4 жыл бұрын
dimension of pics in slider pls
@Shopwithkhushi
@Shopwithkhushi 2 ай бұрын
How can I put image in background!?
@haiangtran2036
@haiangtran2036 Жыл бұрын
Which technology or libraries used in js bro? Whether it is native js or not?
@sergaft3295
@sergaft3295 4 жыл бұрын
Прямо магия какая то 👏 , тоже так хочу ✨😀✨
@AmitGupta-rt2gp
@AmitGupta-rt2gp 4 жыл бұрын
Thank you.
@apuiftekhar8214
@apuiftekhar8214 4 жыл бұрын
hi. its nice work.
@Vladimir905
@Vladimir905 5 жыл бұрын
как всегда всё супер
@raghavkumar9485
@raghavkumar9485 3 жыл бұрын
How can i create a second slider from this on same page, if i copy it and change some code, it works but you can't see the arrows for navigation neither bullets, HELP!!!!
@CreativeAnujkumar
@CreativeAnujkumar 4 жыл бұрын
Thanks Anna
@AnnaBlok
@AnnaBlok 4 жыл бұрын
😊
@dreiigHiveSGClips
@dreiigHiveSGClips 3 жыл бұрын
this isnt working in responsive the left arrow isnt showing
@acquy2279
@acquy2279 4 жыл бұрын
nice video !
@AnnaBlok
@AnnaBlok 4 жыл бұрын
🤗
@carcar5479
@carcar5479 Жыл бұрын
when i put it to mobile view all the text overlaps and crams together. it also wont add the second line
@hugocangi6214
@hugocangi6214 Ай бұрын
gracias mañana lo hago
@febrikurniawan7276
@febrikurniawan7276 2 жыл бұрын
thanks :D
@casterbeat
@casterbeat 8 ай бұрын
Thanks !!
@aleksandrsrudkevics6384
@aleksandrsrudkevics6384 4 жыл бұрын
Как раз что искал. Спасибо
@shaswat18
@shaswat18 3 жыл бұрын
back button not working for second slide in this video
@MsPeepingTallulah
@MsPeepingTallulah 4 жыл бұрын
Thanks for the video, it would be useful to get the back slider working, can you help?
@ida4095
@ida4095 4 жыл бұрын
i managed to fix it, just change this part like so: #slide1:checked ~ #controls label:nth-last-child(1), #slide2:checked ~ #controls label:nth-last-child(4), #slide3:checked ~ #controls label:nth-last-child(3), #slide4:checked ~ #controls label:nth-last-child(2){ background: url(image.flaticon.com/icons/svg/271/271220.svg) no-repeat; float: left; margin: 0 0 0 -50px; display: block; } the sequence was wrong
@luxarmiger5729
@luxarmiger5729 3 жыл бұрын
Спасибо, дорогая
@enterkvas
@enterkvas 7 ай бұрын
Левая стрелка не работает. Что-то там не то.
@elzenhaikal393
@elzenhaikal393 4 жыл бұрын
does anyone has any idea how to add new slides to this?
@stanleymakhuza9419
@stanleymakhuza9419 3 жыл бұрын
I'm not sure if this would work but try this: For both the HTML and CSS files as an example where it says 'slide1' till the last slide which in this video would be 'slide4' and slide slide_1 div tags in the HTML and the CSS elements. Just copy and paste the last one which would be eg. like this and the CSS elements too. This was something I was just editing After that, you you rename the one that you just pasted to slide_5 (and you can do more eg 6+ if you want) Note you have to do it on all the div tags and CSS elements that end with slide4 and slide_4 for it to work from the input tags till the end. Basically you just copy paste and rename... I have tried to explain this the simplest way possible. Sorry if this sounds too complicated. Hope it possibly helps
@hassanch5866
@hassanch5866 4 жыл бұрын
What is the name of the music playing in the background?
@saitanuja2888
@saitanuja2888 4 жыл бұрын
Is it responsive?
@nagaraj2958
@nagaraj2958 3 жыл бұрын
Left arrow not working properly
@alaeen2675
@alaeen2675 2 жыл бұрын
how can i made the slider move by it self
@JansenCCruz
@JansenCCruz 3 жыл бұрын
help the icon does not appear for me
@TDmitry412
@TDmitry412 3 жыл бұрын
Спасибо.
@shaswat18
@shaswat18 3 жыл бұрын
how can I make the same carousel of 7 slides?can anyone help me
@aibartolegenov7784
@aibartolegenov7784 2 жыл бұрын
How to add more slides???
@Vickysong1625
@Vickysong1625 2 жыл бұрын
When inputting the svg icon to get the clickable arrow in the css, it will not pop out with anything... I am trying to use an alternative svg icon from another source too but it still won't show... any ideas why that's the case?
@Axelniraj
@Axelniraj Жыл бұрын
use background-size: cover; the icon size is too large to visible properly
@angelopincas3418
@angelopincas3418 Жыл бұрын
how can I change the color to picture?
@marcoricello7059
@marcoricello7059 3 жыл бұрын
how do i link this to my html code in visual studio?
@aibartolegenov7784
@aibartolegenov7784 2 жыл бұрын
Прошу прощения, но текст в тэге текст накладывается друг на друга когда выходит за пределы указанной ширины. Как это можно исправить?
@krossvayz6500
@krossvayz6500 Жыл бұрын
Здраствуй. Нашел решения ?
@yuliuspranata15
@yuliuspranata15 Жыл бұрын
ty so much mam
@jitendraprajapat6892
@jitendraprajapat6892 4 жыл бұрын
How to attach lazy load on this slider
@ale_3g230
@ale_3g230 3 жыл бұрын
спасибо
@katiejenningson8569
@katiejenningson8569 4 жыл бұрын
Hi thanks for this it was very helpful! I just have one issue, I copied and pasted the code from codepen but for some reason, my text from h2 and p are overlapping does anyone know how to fix it?
@clevyn3341
@clevyn3341 3 жыл бұрын
Use line height or give margin
@suchidoodles
@suchidoodles 4 жыл бұрын
Can you tell me pixal size in photo ?
@emirsaherden9716
@emirsaherden9716 3 жыл бұрын
gelek spas mamoste
@myas2009
@myas2009 4 жыл бұрын
excelente ... Hay manera de que sea automático?
@AnnaBlok
@AnnaBlok 4 жыл бұрын
tal vez si conectas una animación, pero no será un método flexible
@gio2156
@gio2156 3 жыл бұрын
воу, не думал что такое можно на пюрешном хтмл и цсс сделать
@filipmachala7570
@filipmachala7570 3 жыл бұрын
Does anybody know how to put it into autotomatic slider? Like every 4sec it will change to next slide. Thank you very much
@etherealgem1682
@etherealgem1682 2 жыл бұрын
Look at my comment. :)
@gogutans
@gogutans 4 жыл бұрын
Hi guys, I find it pretty difficult to add a new slide, could you please help me?
@AnnaBlok
@AnnaBlok 4 жыл бұрын
What problems?
@gogutans
@gogutans 4 жыл бұрын
@@AnnaBlok could you plase make an update with 8slides? I am trying to add new slides and I cant figure out how
@jordandesigns5797
@jordandesigns5797 3 жыл бұрын
@@gogutans @anna blok I have to make a slide without JS for my site but need more than 4 slides, please help
@aibartolegenov7784
@aibartolegenov7784 2 жыл бұрын
Same problem, if you have solution may you please write
@pipsys1165
@pipsys1165 3 ай бұрын
Were you able to solve this problem?
@imatecnologia9155
@imatecnologia9155 Жыл бұрын
un saludo desde elhabal
@soon3426
@soon3426 3 жыл бұрын
Music intro?
These CSS PRO Tips & Tricks Will Blow Your Mind!
8:48
Coding2GO
Рет қаралды 363 М.
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
路飞与唐舞桐
Рет қаралды 12 МЛН
Ozoda - Lada ( Official Music Video 2024 )
06:07
Ozoda
Рет қаралды 18 МЛН
CSS Slider: Image Slider with controls using CSS3 Only
9:50
Web Decorator
Рет қаралды 305 М.
Slideshow With Navigation Buttons Using Only HTML & CSS
7:08
DarkCode
Рет қаралды 657 М.
HTML and CSS Project Tutorial: Pure CSS Image Slider
7:41
Skillthrive
Рет қаралды 312 М.
Slider Animation | HTML CSS
3:34
Server OZ
Рет қаралды 47 М.
Pure CSS Responsive Image Slider - HTML5/CSS3 Tutorial
8:36
w3newbie
Рет қаралды 380 М.
Animate On Scroll With Just 3 LINES Of CSS (No Libraries Needed)
2:51
Pure CSS Image Slider  Using Only HTML & CSS
7:39
Lama Code
Рет қаралды 177 М.
Build a JavaScript IMAGE SLIDER in 15 minutes! 🖼️
15:49
Bro Code
Рет қаралды 47 М.