meiblorn/ngx-fullpage

View on GitHub
sources/demo/app/templates/configurartion/slides/slide2/usage.class.options.template.txt

Summary

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

@Component({
    selector: 'app',
    template: `
        <div mnFullpage="options">
            <div id="section1" class="section fp-section fp-table">
                <div class="fp-tableCell">
                    Section 1
                </div>
            </div>
            ......
        </div>
    `
})
export class AppComponent {
    @Output() public options: MnFullpageOptions = new MnFullpageOptions({
        navigation: true,
        keyboardScrolling: true
    });
}