Build a Carousel from Scratch in Angular

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 พ.ย. 2024

ความคิดเห็น • 24

  • @beButters
    @beButters ปีที่แล้ว +1

    You deserve more likes and views! Basically no JS with no calculations or anything! Perfect solution!

  • @marius87chao
    @marius87chao 11 หลายเดือนก่อน

    How can it be that this video has so few likes? Very good video. I would love more :)

  • @mahdiandalib186
    @mahdiandalib186 ปีที่แล้ว

    very very nice tutorial, i hope u continue teaching angular and making short and useful videos like this

  • @Zewalk
    @Zewalk 4 หลายเดือนก่อน

    Amazing Tutorial! Thanks!😃

  • @nadakitsch
    @nadakitsch 10 หลายเดือนก่อน

    Very useful! Thank you!

  • @staycalm4957
    @staycalm4957 ปีที่แล้ว

    Thank you very much for that tutorial. I learnt a lot from it! It is a hidden gem! Keep up the good work :)

  • @ronmoki1
    @ronmoki1 9 หลายเดือนก่อน

    AMAZING

  • @mipslp6028
    @mipslp6028 7 หลายเดือนก่อน

    Which angular version are you using? I encountered problems with angular version 17.2.2. The (click) property doesn't work. It doesn't throw errors, the clicks just won't register. (mousedown) and (mouseup) don't work either. Additionally as soon as setInterval or setTimeout is used in a recursive loop or any loop at all, the website won't load, as if it was an while(true) loop...

    • @mipslp6028
      @mipslp6028 6 หลายเดือนก่อน

      I fixed it by re-programming the image carousel from scratch following your design choices in react

  • @kobealbanese4319
    @kobealbanese4319 11 หลายเดือนก่อน

    you're the goat!!!

  • @igor.2796
    @igor.2796 ปีที่แล้ว

    Very interesting work! Ty mate!)

  • @eloi9467
    @eloi9467 ปีที่แล้ว

    Thanks! amazing video 💢

  • @pavanKumarR-r7n
    @pavanKumarR-r7n ปีที่แล้ว

    Thank you very much for that tutorial. I learnt a lot from it! ❤

  • @monsieurrodriguez9687
    @monsieurrodriguez9687 8 หลายเดือนก่อน

    you got in spanish a guy that simply copy and paste his code without any explanation and you without a single word but a step-by-step video set the thing much more clear

  • @farhaanidrees13
    @farhaanidrees13 11 หลายเดือนก่อน

    Can i do all that in Visual Studio and not Visual Studio Code

  • @gabrielsosa163
    @gabrielsosa163 6 หลายเดือนก่อน

    Excelente video muy bien echo , pero como cambio las imagenes a las que yo necesito realmente

  • @chicagoboy279
    @chicagoboy279 3 หลายเดือนก่อน

    is it touch?

  • @csengerilevente9564
    @csengerilevente9564 ปีที่แล้ว

    Thanks!

  • @HarishankarJoshi-uq1pf
    @HarishankarJoshi-uq1pf 2 หลายเดือนก่อน +1

    source code please 🙏🙏🙏

  • @joeng5999
    @joeng5999 ปีที่แล้ว +2

    Video would have been superb with audio

  • @aayushithakkar7293
    @aayushithakkar7293 ปีที่แล้ว

    Hi, I tried this same, but autoslide is not working for me !

  • @EmmyGames27
    @EmmyGames27 6 หลายเดือนก่อน

    me pueden regalar el codigo

  • @pedrollerenas2352
    @pedrollerenas2352 7 หลายเดือนก่อน

    Another way of implementing the slider:
    public slide(sign: number): void {
    this.selectedIndex = (this.images.length + this.selectedIndex + sign) % this.images.length;
    }
    and calling slide(-1) or slide(1) accordingly.