meiblorn/ngx-fullpage

View on GitHub
sources/demo/app/templates/configurartion/slides/slide3/usage.mix.template.txt

Summary

Maintainability
Test Coverage
import { Component, Output } from '@angular/core';
import { MnFullpageOptions } from 'ngx-fullpage';

@Component({
    selector: 'app',
    template: `
        <div mnFullpage="options" [mnFullpageControlArrows]="false">
            <div class="section"> Some section 1 </div>
            <div class="section"> Some section 2 </div>
        </div>
    `
})
export class AppComponent {
    @Output() public options: MnFullpageOptions = new MnFullpageOptions({
        navigation: true,
        keyboardScrolling: true
    });
}