Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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