Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active June 16, 2018 20:29
Show Gist options
  • Save realtomaszkula/46f74d7dd2f79387c72ac080924f6ef1 to your computer and use it in GitHub Desktop.
Save realtomaszkula/46f74d7dd2f79387c72ac080924f6ef1 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-sticky-header',
template: `<ng-content></ng-content>`,
styles: [
`
:host {
position: fixed;
top: 0;
width: 100%;
}
`
],
})
export class StickyHeaderComponent implements AfterViewInit {
ngAfterViewInit() {
const scroll$ = fromEvent(window, 'scroll');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment