Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VikramVasudevan/82fea7b145109b188d1ad4973cb77fa9 to your computer and use it in GitHub Desktop.
Save VikramVasudevan/82fea7b145109b188d1ad4973cb77fa9 to your computer and use it in GitHub Desktop.
scroll-slideshow HTML
<div class="slide-show-container" mouseWheel (mouseWheelUp)="onMouseWheelUpFunc()"
(mouseWheelDown)="onMouseWheelDownFunc()">
<scroll-slideshow-item *ngFor="let slide of slides ; let i = index">
{{i + 1 }}. {{slide}}
</scroll-slideshow-item>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment