Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontal scroll (with arrows) for Angular package

Tags:

css

npm

angular

i'm looking for an angular 2-6 package that has a horizontal scroll of images with arrows exactly like the airbnb one: enter image description here

Anyone ideas would be helpful - thank you

like image 898
inbanco Avatar asked Dec 31 '25 01:12

inbanco


2 Answers

This is the solution is for custom horizontal scroll

In .html

 <div class="pull-left mt-sm">
                      <i class="icon-arrow-left pointer" (click)="scrollLeft()"></i>
                </div>   

 <div #widgetsContent class="custom-slider-main">
        <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
          <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
          <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
          <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
          <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
          <div class="info-box">
             <img src="file.jpg" class="info-box">
          </div>
    </div>

<div class="pull-right mt-sm">
    <i class="icon-arrow-right pointer" (click)="scrollRight()"></i>
    </div>

In .scss

.custom-slider-main{
    display: flex;
    overflow: hidden;    
    scroll-behavior: smooth;
}

 .info-box{
    width: 50px;
    height:50px
 }

In .ts

@ViewChild('widgetsContent') widgetsContent: ElementRef;

And On click of left/right button use the following functions

scrollLeft(){
    this.widgetsContent.nativeElement.scrollLeft -= 150;
  }

  scrollRight(){
    this.widgetsContent.nativeElement.scrollLeft += 150;
  }
like image 158
Sahil Ralkar Avatar answered Jan 01 '26 20:01

Sahil Ralkar


You can use some npm package, or learn how to build your image slider. Search angular Carousel in google and you can find various result for same, all popular packages like bootstrap, ngx bootstrap have this inbuilt.

like image 35
Akshay Rajput Avatar answered Jan 01 '26 19:01

Akshay Rajput



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!