Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robert197/angular2-set-class-in-view
angular2 directive which sets a given class to element where attribute [setClassInView]="'className'" is placed.
https://github.com/robert197/angular2-set-class-in-view
Last synced: 19 days ago
JSON representation
angular2 directive which sets a given class to element where attribute [setClassInView]="'className'" is placed.
- Host: GitHub
- URL: https://github.com/robert197/angular2-set-class-in-view
- Owner: robert197
- Created: 2016-09-22T17:58:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-23T13:23:36.000Z (about 8 years ago)
- Last Synced: 2024-10-28T14:18:20.383Z (2 months ago)
- Language: TypeScript
- Size: 6.99 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular2-set-class-in-view
angular2-set-class-in-view is a plugin directive for [Angular 2](http://angular.io).#### Setup
----------To use the Angular set class in view, simply run `npm install angular2-set-class-in-view` and then include SetClassInView in your project (see Example for more details).
#### Config / Example
-----------Angular2 set class in view sets is able to set class on every element which appears in viewport of mobile or desktop browser.
```javascript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';import { AppComponent } from './app.component';
import { SetClassInView } from 'angular2-set-class-in-view/main';@NgModule({
imports: [ BrowserModule ],
declarations: [
AppComponent,
SetClassInView
],
bootstrap: [ AppComponent ]
})
export class AppModule { }```
```html
This element is in view
```#### Config / Example
-----------When you are using SystemJs you need to load angular2-set-class-in-view dependency
```javascript
'angular2-set-class-in-view': {
main: './main.js',
defaultExtension: 'js'
}
```
and map 'angular2-set-class-in-view to 'node_modules/angular2-set-class-in-view'.Your systemjs.config.js could look like:
```javascript
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'rxjs': 'npm:rxjs',
'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api',
'angular2-set-class-in-view': 'npm:angular2-set-class-in-view'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular2-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
},
'angular2-set-class-in-view': {
main: './main.js',
defaultExtension: 'js'
}
}
});
})(this);
```