Socket
Socket
Sign inDemoInstall

vue-rippler

Package Overview
Dependencies
10
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vue-rippler

Simple Vue.js plugin for custom ripple effect


Version published
Maintainers
1
Install size
11.4 MB
Created

Readme

Source

vue-rippler 🎉

Simple Vue.js plugin for custom ripple effect

vue2 Version Gzipsize Awesome License Hits stargazers

Live Demo

Installation

npm i vue-rippler --save
yarn add vue-rippler

CDNs

jsDelivr, UNPKG, bundle.run

Usage

main.js

// main.js
import Vue from "vue";
import VueRippler from "vue-rippler";

Vue.use(VueRippler);

Use in component

// .vue template
<template>
  <my-component ripple />
</template>

Set ripple style, and customize as you want(Optional)

<style>
/*
play with some lines below
*/
[ripple] .ripple--container .ripple--body {
  opacity: 0.5 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
  -webkit-animation: rippler 1000ms;
          animation: rippler 1000ms;
}
</style>

Author

Hyouk Seo(Spemer)

Keywords

FAQs

Last updated on 25 Oct 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc