Responsive Slider Using HTML & CSS Only

Поделиться
HTML-код
  • Опубликовано: 8 янв 2025

Комментарии • 176

  • @dabelef
    @dabelef 3 года назад +53

    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;
    }

  • @JoaoPaulo-ox6pr
    @JoaoPaulo-ox6pr 3 года назад +5

    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

  • @locorocojack
    @locorocojack Год назад +7

    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 11 месяцев назад

      thank you my friend it was very helpful

  • @etherealgem1682
    @etherealgem1682 2 года назад +19

    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!

  • @montserrataguilar8055
    @montserrataguilar8055 3 года назад +2

    Your code has literally saved my life! thank youuuu!

  • @hezbonotieno6130
    @hezbonotieno6130 3 года назад +14

    The slider in the video is different from the slider in the source code. Theirs no side buttons.

  • @andrericardo9660
    @andrericardo9660 4 года назад +36

    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)

  • @ajdinpipo08
    @ajdinpipo08 4 года назад +3

    This is the best tutorial about slider.Great job!!

  • @switbeee1364
    @switbeee1364 9 месяцев назад +1

    really interesting to watch even though I had no clue on most of what was happening. Really good results too

  • @yersiniaP
    @yersiniaP 3 года назад +2

    This is what I was looking for! Thanks, great! :D

  • @MrFreeedman
    @MrFreeedman 5 лет назад +8

    в с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 5 лет назад +3

      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)

  • @koffiemmanuelngou
    @koffiemmanuelngou 5 лет назад +9

    U've got one subscriber . Great !

  • @Axelniraj
    @Axelniraj Год назад +2

    if Arrows are not visible then use ( background-size: cover; ) property
    Thnxx 🙂

  • @muhammad_zohaib936
    @muhammad_zohaib936 9 месяцев назад

    Thats amazing 👍🤩
    You've got 1 subscriber
    ❤🎉

  • @peterkovinski8476
    @peterkovinski8476 4 года назад +2

    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

  • @abdelaesus6678
    @abdelaesus6678 3 года назад +2

    IMPRESSIVE! THANK YOU ANNA!

  • @blink182lives100
    @blink182lives100 4 года назад +3

    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

  • @AprilSky
    @AprilSky 4 года назад +3

    feels like I'm gonna slide to heaven

  • @alialhusseini2650
    @alialhusseini2650 4 года назад +4

    awesome slides. done some editing on them but overall very good thank you :D

  • @anupkumar2736
    @anupkumar2736 4 года назад +6

    left arrow doesn't work properly.

  • @HERMIGNIES
    @HERMIGNIES 4 года назад +2

    Thank you from a french guy.

  • @shubhamkapadia6337
    @shubhamkapadia6337 3 года назад +1

    This is Great!! 🤩🤩

  • @kreeytiv-one
    @kreeytiv-one 4 года назад +2

    wow nice just HTML , CSS you got it

  • @victoralmcrespo7310
    @victoralmcrespo7310 4 года назад +8

    its preatty good but the back button doesnt work

    • @1001-w5q
      @1001-w5q 4 года назад +1

      It does but in not a proper way :D

    • @xx8262
      @xx8262 4 года назад +7

      @@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

  • @sematv121
    @sematv121 5 лет назад +3

    А зачем там стрелка назад если она не работает нормально?
    Смотрел на codepen

  • @MyGeorge1964
    @MyGeorge1964 5 лет назад +7

    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 года назад +2

      did you every solve the problem of the back slider?

    • @andrericardo9660
      @andrericardo9660 4 года назад +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 года назад +1

      @@andrericardo9660 Yeah!! It's work!

  • @NinjaBlade0822
    @NinjaBlade0822 4 года назад +2

    that song is so relax

  • @davingrahadi3525
    @davingrahadi3525 Год назад +1

    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 :)

  • @21398403
    @21398403 2 года назад +5

    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 .

  • @Joker-zv8nb
    @Joker-zv8nb 2 года назад

    Thanks for this, help me very much!

  • @cansuaydogan1493
    @cansuaydogan1493 4 года назад +2

    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.

  • @triohmscorporation79
    @triohmscorporation79 3 года назад +1

    Thanks for the tutorial and code.

  • @keirembathoungamm1935
    @keirembathoungamm1935 4 года назад +1

    Left arrow key does not work properly, if you have time please check it and update as soon as possible

    • @nobodysperfect29
      @nobodysperfect29 4 года назад +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 года назад +1

      @@nobodysperfect29 thanks bud !!

  • @kaiodias5474
    @kaiodias5474 3 года назад +1

    please how to implement an automatic photo pass on this system?

  • @_cruzito.x
    @_cruzito.x 3 года назад +1

    How do I do if I want to add a fifth element to the slider?

  • @nickspringer5755
    @nickspringer5755 4 года назад +3

    The music sounds like a more ambient version of Mice on Venus from Minecraft lol.

  • @alfredliew5062
    @alfredliew5062 3 года назад

    you are a freaking legend

  • @idontwhy3132
    @idontwhy3132 3 года назад +1

    subbed, very helpful. Thanks

  • @masdetektivetv3504
    @masdetektivetv3504 3 года назад +1

    Thanks, its awesome

  • @azeuniverse3737
    @azeuniverse3737 4 года назад +1

    How change slider position.
    I mean top:56% or right:5%
    I tried it, but it didn't work

  • @alejootorres3820
    @alejootorres3820 3 года назад

    Why is the back arrow not working?
    it only works from the third point to the first, and vice versa

  • @AjayKumar-gg4ds
    @AjayKumar-gg4ds Год назад

    Awesome 👌💯

  • @haiangtran2036
    @haiangtran2036 Год назад

    Which technology or libraries used in js bro? Whether it is native js or not?

  • @AbduRahmanTPLP
    @AbduRahmanTPLP 4 месяца назад

    What song for this Video? So relax

  • @pavlekaranovic7220
    @pavlekaranovic7220 4 года назад +2

    dimension of pics in slider pls

  • @PedroGualandi
    @PedroGualandi 4 года назад +1

    Great work!

  • @raghavkumar9485
    @raghavkumar9485 4 года назад

    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!!!!

  • @carcar5479
    @carcar5479 2 года назад

    when i put it to mobile view all the text overlaps and crams together. it also wont add the second line

  • @fhxhnddhmcegvjdthk
    @fhxhnddhmcegvjdthk 5 лет назад +1

    Анна, напишите пожалуйста, что за музыка играет в начале видео)

  • @WindchesterWebDev
    @WindchesterWebDev 5 лет назад +4

    Это всегда очень круто, когда подобное сделано на чистом CSS. Только вот, жаль, что в реальном проекте 99% вероятности, что никто никогда подобное не применит. Т.к. гораздо удобнее будет slick\owl. Но как концепт - да, это шикарно)

    • @ВадимМоскалёв-ж7б
      @ВадимМоскалёв-ж7б 5 лет назад +1

      Slick\Owl, который зависим от jquery, наес

    • @WindchesterWebDev
      @WindchesterWebDev 5 лет назад +1

      @@ВадимМоскалёв-ж7б и что?) Чем так плох jQuery? Может, это и не самый производительный инструмент, но в удобстве и количестве библиотек его пока никто не смог обойти.

    • @mifodiyshtulh8151
      @mifodiyshtulh8151 2 года назад

      нууу стрелку назад я сделал рабочей (автор забил болт, что она не пашет) осталось одно НО, у меня стрелки невидимые....

    • @vip.ted100
      @vip.ted100 Год назад

      ошибаешься мой друг, вот мне и понадобился слайдер без джава скрипта )

    • @WindchesterWebDev
      @WindchesterWebDev Год назад +1

      тот самый 1%)

  • @MsPeepingTallulah
    @MsPeepingTallulah 4 года назад +3

    Thanks for the video, it would be useful to get the back slider working, can you help?

    • @ida4095
      @ida4095 4 года назад +2

      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

  • @muhammadrifqy24
    @muhammadrifqy24 3 года назад

    there's something wrong with the left arrow button

  • @dreiigHiveSGClips
    @dreiigHiveSGClips 3 года назад

    this isnt working in responsive the left arrow isnt showing

  • @Vickysong1625
    @Vickysong1625 3 года назад

    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 Год назад +1

      use background-size: cover;
      the icon size is too large to visible properly

    • @angelopincas3418
      @angelopincas3418 Год назад

      how can I change the color to picture?

  • @PahugerPuruhitaBaiq
    @PahugerPuruhitaBaiq 4 года назад +3

    thanks for sharing this!

  • @Shopwithkhushi
    @Shopwithkhushi 5 месяцев назад

    How can I put image in background!?

  • @aibartolegenov7784
    @aibartolegenov7784 3 года назад

    Прошу прощения, но текст в тэге текст накладывается друг на друга когда выходит за пределы указанной ширины. Как это можно исправить?

    • @krossvayz6500
      @krossvayz6500 Год назад

      Здраствуй. Нашел решения ?

  • @Elisha_GG
    @Elisha_GG 2 года назад

    Ваш контент прекрасен, почему у Вас так мало подсчиков остаётся загадкой.

  • @thotanagaraju7871
    @thotanagaraju7871 3 года назад

    i am not getting the side buttons < likes >

  • @shaswat18
    @shaswat18 4 года назад

    back button not working for second slide in this video

  • @alaeen2675
    @alaeen2675 2 года назад

    how can i made the slider move by it self

  • @hassanch5866
    @hassanch5866 4 года назад

    What is the name of the music playing in the background?

  • @elzenhaikal393
    @elzenhaikal393 4 года назад +2

    does anyone has any idea how to add new slides to this?

    • @stanleym14
      @stanleym14 3 года назад +1

      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

  • @marcoricello7059
    @marcoricello7059 3 года назад

    how do i link this to my html code in visual studio?

  • @aibartolegenov7784
    @aibartolegenov7784 3 года назад

    How to add more slides???

  • @JansenCCruz
    @JansenCCruz 4 года назад

    help the icon does not appear for me

  • @nagaraj2958
    @nagaraj2958 3 года назад

    Left arrow not working properly

  • @apuiftekhar8214
    @apuiftekhar8214 4 года назад +1

    hi. its nice work.

  • @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

  • @shaswat18
    @shaswat18 4 года назад

    how can I make the same carousel of 7 slides?can anyone help me

  • @jitendraprajapat6892
    @jitendraprajapat6892 4 года назад

    How to attach lazy load on this slider

  • @gogutans
    @gogutans 4 года назад +1

    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 года назад +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 4 года назад +1

      @@gogutans @anna blok
      I have to make a slide without JS for my site but need more than 4 slides, please help

    • @aibartolegenov7784
      @aibartolegenov7784 3 года назад

      Same problem, if you have solution may you please write

    • @pipsys1165
      @pipsys1165 7 месяцев назад

      Were you able to solve this problem?

  • @enterkvas
    @enterkvas 10 месяцев назад

    Левая стрелка не работает. Что-то там не то.

  • @suchidoodles
    @suchidoodles 4 года назад

    Can you tell me pixal size in photo ?

  • @ithielragnaros
    @ithielragnaros 3 года назад +1

    Muchas gracias quedo hermoso ¡

  • @acquy2279
    @acquy2279 4 года назад +1

    nice video !

  • @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

  • @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

  • @sulemanali8542
    @sulemanali8542 4 года назад +1

    thanks alot work for me

  • @krossvayz6500
    @krossvayz6500 Год назад

    Як добавити 5й слайд?

  • @soon3426
    @soon3426 3 года назад

    Music intro?

  • @usmanmani9743
    @usmanmani9743 4 года назад

    how to write symbol next to (#slide1:checked)?

    • @AnnaBlok
      @AnnaBlok  4 года назад

      add image in background url

  • @saitanuja2888
    @saitanuja2888 4 года назад

    Is it responsive?

  • @shifanatasneem7578
    @shifanatasneem7578 3 года назад

    Can u share the code pls

  • @sauravgurjardangash8094
    @sauravgurjardangash8094 4 года назад

    Hello Sir, Can I use this in my site??🙏🏻

  • @mythreyiramanan9045
    @mythreyiramanan9045 4 года назад

    will this code work in visual studio code @Anna Blok

  • @rishisharma8596
    @rishisharma8596 Год назад +1

    thank you sir

  • @fredyrojas7720
    @fredyrojas7720 5 лет назад +2

    Genial!!!

  • @gio2156
    @gio2156 3 года назад

    воу, не думал что такое можно на пюрешном хтмл и цсс сделать

  • @sergaft3295
    @sergaft3295 4 года назад +3

    Прямо магия какая то 👏 , тоже так хочу ✨😀✨

  • @josealejandrourielesmontan2022
    @josealejandrourielesmontan2022 4 года назад

    la flecha de la izquierda esta dañada

  • @AmitGupta-rt2gp
    @AmitGupta-rt2gp 4 года назад +1

    Thank you.

  • @ND-xh9gq
    @ND-xh9gq 5 лет назад

    Это браузер такой или программа ?

    • @AnnaBlok
      @AnnaBlok  5 лет назад

      Сайт Codepen

    • @ND-xh9gq
      @ND-xh9gq 5 лет назад

      @@AnnaBlok благодарю ♥️😓

  • @aleksandrsrudkevics6384
    @aleksandrsrudkevics6384 4 года назад +1

    Как раз что искал. Спасибо

  • @hugocangi6214
    @hugocangi6214 5 месяцев назад

    gracias mañana lo hago

  • @Vladimir905
    @Vladimir905 5 лет назад +2

    как всегда всё супер

  • @laggron2412
    @laggron2412 2 года назад +1

    thank a lot

  • @casterbeat
    @casterbeat 11 месяцев назад

    Thanks !!

  • @CreativeAnujkumar
    @CreativeAnujkumar 4 года назад +1

    Thanks Anna

  • @luxarmiger5729
    @luxarmiger5729 3 года назад

    Спасибо, дорогая