Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sheikalthaf/ngu-parallax
Angular universal Parallax
https://github.com/sheikalthaf/ngu-parallax
Last synced: about 7 hours ago
JSON representation
Angular universal Parallax
- Host: GitHub
- URL: https://github.com/sheikalthaf/ngu-parallax
- Owner: sheikalthaf
- License: mit
- Created: 2017-11-09T10:07:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:12:27.000Z (about 1 year ago)
- Last Synced: 2024-03-15T07:49:35.898Z (10 months ago)
- Language: TypeScript
- Size: 541 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ngu-parallax
Angular Universal parallax
## Demo
Demo available [Here](https://sheikalthaf.github.io/ngu-parallax)
## Installation
`npm install @ngu/parallax --save`
## Sample
Include NguParallaxModule in your app module:
```javascript
import { NguParallaxModule } from '@ngu/parallax';@NgModule({
imports: [
NguParallaxModule
],
})
export class AppModule { }
```Then use in your component:
```javascript
import { Component } from '@angular/core';@Component({
selector: 'sample',
template: `
// your elements goes here
`,
})
export class SampleComponent {}
```**Treat `ngu-parallax` as a div element**
## License
[MIT](LICENSE) license.