Demo page: https://dimanoid.github.io/ngx-dm-tour/
Install the library and dependecies:
npm i -S resize-observer-polyfill @dimanoid/ngx-dm-tour
Add module to imports:
import { DmTourModule } from '@dimanoid/ngx-dm-tour';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule, BrowserAnimationsModule, CommonModule,
.......
DmTourModule // <-------
],
bootstrap: [AppComponent]
})
export class AppModule { }