npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-ui-preloader

v1.2.1

Published

![chrome_54Uk8Qpx8p](https://user-images.githubusercontent.com/54861487/86740454-4a074e00-c054-11ea-8d35-ddcb438982e7.png)

Downloads

5,313

Readme

chrome_54Uk8Qpx8p

Codacy Badge Netlify Status

Language License NPM Package NPM Downloads

NPM

Demo and playground

Live demo - https://vue-preloader.netlify.app/

Playground Website. Adjust the settings using the playground options. On the bottom of the page you will find the source code that you can directly use in your project or you can manually change the props.

npm link - https://www.npmjs.com/package/vue-ui-preloader

Installation

# use yarn
yarn add vue-ui-preloader
# use npm
npm install --save vue-ui-preloader

Usage

In your main.js

import loader from "vue-ui-preloader";

Vue.use(loader);

In your template

<template>
  <loader object="#ff9633" color1="#ffffff" color2="#17fd3d" size="5" speed="2" bg="#343a40" objectbg="#999793" opacity="80" name="circular"></loader>
</template>

note(you can either use the playground website to automatically get all the props set or you can set them manaully using the below prop list. You can also resort to not passing any prop, in this case the preloader will use default settings.)

Via CDN

CDN demo link - http://jsfiddle.net/8961cm0s/1/

In your index.html

<script src="https://unpkg.com/vue-ui-preloader"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/vue-ui-preloader/dist/loader.css">

In your template

<div id="app">
  <loader object="#ff9633" color1="#ffffff" color2="#17fd3d" size="5" speed="2" bg="#343a40" objectbg="#999793" opacity="80" name="circular"></loader>
</div>

In your main.js

Vue.use(loader)

new Vue({
  el: '#app',
  components:{
  loader:loader
  }
});

Props

| Name | Type | Default | Description | |:-----|:-----|:--------|:------------| | name | string | 'spinning' | decides the type of loader | | object | string | '#ff9633' | set the color of the loaders. hex or color | | color1 | string | only for circular | set the color of the circular loader disk1. hex or color | | color2 | string | only for circular | set the color of the circular loader disk2. hex or color | | size | number | 5 | set the size of loader | | bg | string | '#343a40' | set the color of the loader background. hex or color | | objectbg | string | '#999793' | set the color of the loader object background. hex or color | | opacity | number | 80 | set the opacity of background | | speed | number | 2 | animation speed in seconds | | disableScrolling | boolean | false | disable page scrolling when preloader is open |

Author

© Vinayak sharma Hrishikesh Agarwal