this.nextImage = this.nextImage.bind(this);
this.sliderPoint = this.slider.siblings(".slider-point");
this.sliderPoint.on("click", this.nextImage);
previousImage() {
this.currentImg = Math.max(this.currentImg - 1, 0);
this.scrollImages(this.currentImg, this.speed);
}