All Projects → t7yang → ngx-loaders-css

t7yang / ngx-loaders-css

Licence: MIT license
Loaders.css component for Angular X

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to ngx-loaders-css

Http Loader
A loader for ngx-translate that loads translations with http calls
Stars: ✭ 170 (+1207.69%)
Mutual labels:  loader, ngx
Ngx Skeleton Loader
Make beautiful, animated loading skeletons that automatically adapt to your Angular apps
Stars: ✭ 278 (+2038.46%)
Mutual labels:  loader, ngx
django-manifest-loader
Simplifies webpack configuration with Django
Stars: ✭ 105 (+707.69%)
Mutual labels:  loader
react-native-pullview
scrollview&&FlatList Pull refresh and loadmore
Stars: ✭ 26 (+100%)
Mutual labels:  loader
vue-loading
Loading bar for Vue.js apps using axios
Stars: ✭ 19 (+46.15%)
Mutual labels:  loader
path-replace-loader
Path replace loader for webpack
Stars: ✭ 14 (+7.69%)
Mutual labels:  loader
loadkit
Java 资源加载器,充分拓展ClassLoader#getResources(name)的能力,实现递归加载,支持普通风格 / 包名风格 / ANT风格 / 正则风格路径的资源加载同时支持自定义过滤器,通常作为框架的基础类库。
Stars: ✭ 39 (+200%)
Mutual labels:  loader
composer-file-loader
Tool to load namespaces and classes from composer.json file without composer
Stars: ✭ 64 (+392.31%)
Mutual labels:  loader
markup-inline-loader
a webpack loader to embed svg/MathML to html
Stars: ✭ 24 (+84.62%)
Mutual labels:  loader
angular-translate-loader
"angular-translate" loader for webpack
Stars: ✭ 15 (+15.38%)
Mutual labels:  loader
skeleton-loader
Loader module for webpack to execute your custom procedure. It works as your custom loader.
Stars: ✭ 19 (+46.15%)
Mutual labels:  loader
BSLoader
It's to show loading animations
Stars: ✭ 13 (+0%)
Mutual labels:  loader
react-data-loader
Dead simple data loader helper for React
Stars: ✭ 22 (+69.23%)
Mutual labels:  loader
ng2-tooltip-directive
The tooltip is a pop-up tip that appears when you hover over an item or click on it.
Stars: ✭ 101 (+676.92%)
Mutual labels:  ngx
Solaris
A local LKM rootkit loader/dropper that lists available security mechanisms
Stars: ✭ 47 (+261.54%)
Mutual labels:  loader
angular-scrollspy
A simple lightweight library for Angular which automatically updates links to indicate the currently active section in the viewport
Stars: ✭ 34 (+161.54%)
Mutual labels:  ngx
ngx-loading-mask
Angular 5+ simple loading-mask ui component.
Stars: ✭ 22 (+69.23%)
Mutual labels:  ngx
SVGLoadersPack-Android
Android SVGLoadersPack - SVG animations and Loaders in Android
Stars: ✭ 27 (+107.69%)
Mutual labels:  loader
svg-symbol-sprite-loader
Loader and plugin for generating an SVG symbol sprite
Stars: ✭ 15 (+15.38%)
Mutual labels:  loader
react-nested-loader
The easiest way to manage loaders/errors inside a button. NOT an UI lib.
Stars: ✭ 62 (+376.92%)
Mutual labels:  loader

Angular Loaders.css

Loaders.css component for Angular X.

Demo

demo

Click here to see the live DEMO, or try it out on stackblitz.

Installation

npm install ngx-loaders-css loaders.css
or
yarn add ngx-loaders-css loaders.css

Usage

// ...
import { NgxLoadersCssModule } from 'ngx-loaders-css';

@NgModule({
  // ...
  imports: [BrowserModule, NgxLoadersCssModule],
})
export class AppModule {}
// ...
import { Component } from '@angular/core';
import { LoadersCSS } from 'ngx-loaders-css';

@Component({
  selector: 'app-root',
  template: '<loaders-css [loader]="loader" [scale]="3" [bgColor]="bgColor" [color]="color"></loaders-css>',
  styleUrls: ['./app.component.css'],
})
export class AppComponent {
  loader: LoadersCSS = 'pacman';
  bgColor = 'black';
  color = 'rgba(100, 100, 100, 0.5)';
}

Props

props type optional default desc
bgColor string true transparent set container background color, all valid css color
color string true #FFFFFF set spinner elements color, all valid css color
loader LoaderCSS true ball-pulse import LoadersCSS type to get intellisense and type check
scale number true 1 zoom loader size

Known issues

  • Prop color only affect to those loaders that design without border color, the default color is generate by Loader.css style.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].