Easily add 🦄's to your Angular site. Includes two directives and a service for unicornifying your site. The two directives included are unicornify-me
and unicornify-clear
and the service is injectable as UnicornifyService
.
npm install --save angular-unicornify
import { UnicornifyModule } from "angular-unicornify";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, UnicornifyModule],
bootstrap: [AppComponent]
})
export class AppModule { }
import { UnicornifyService } from "angular-unicornify";
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(readonly unicorns: UnicornifyService) {
}
}
/* ./app.component.html */
<div class="cornify">
<span class="corns" unicornify-me>🦄</span>
<span class="corns-clear" unicornify-clear>🗑️</span>
<span>{{ unicorns.count }}</span>
</div>
The directives are available for use on any element. Spawn unicorns by clicking the element.
<button unicornify-me>Click for corns</button>
<button unicornify-clear>Click to clear corns</button>
export class AppComponent {
constructor(readonly unicorns: UnicornifyService) {
}
}
add
: () => void
- 🦄remove
: () => void
- remove all unicornscount
: number
- how many unicorns?
Big thanks to: