GitHunt
SP

spemer/vue-rippler

๐ŸŽ‰ Custom ripple effect plugin for @vuejs

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)

Languages

JavaScript57.7%Shell42.3%

Contributors

MIT License
Created September 15, 2018
Updated December 24, 2024
spemer/vue-rippler | GitHunt