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...
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
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.
You deserve more likes and views! Basically no JS with no calculations or anything! Perfect solution!
How can it be that this video has so few likes? Very good video. I would love more :)
very very nice tutorial, i hope u continue teaching angular and making short and useful videos like this
Amazing Tutorial! Thanks!😃
Very useful! Thank you!
Thank you very much for that tutorial. I learnt a lot from it! It is a hidden gem! Keep up the good work :)
AMAZING
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...
I fixed it by re-programming the image carousel from scratch following your design choices in react
you're the goat!!!
Very interesting work! Ty mate!)
Thanks! amazing video 💢
Thank you very much for that tutorial. I learnt a lot from it! ❤
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
Can i do all that in Visual Studio and not Visual Studio Code
Excelente video muy bien echo , pero como cambio las imagenes a las que yo necesito realmente
is it touch?
Thanks!
source code please 🙏🙏🙏
Video would have been superb with audio
Hi, I tried this same, but autoslide is not working for me !
same
me pueden regalar el codigo
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.