All Projects → williankeller → ripple-effect-click

williankeller / ripple-effect-click

Licence: MIT license
Add ripple effect to any element you want when the click action happens ("ripple effect")

Programming Languages

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

Projects that are alternatives of or similar to ripple-effect-click

Ripple.js
Proper Material Design ripple effect for the web, that wouldn't interfere your elements' DOM.
Stars: ✭ 18 (+20%)
Mutual labels:  ripple, ripple-effect
react-touch-ripple
Create ripple effect from Material Design with React
Stars: ✭ 27 (+80%)
Mutual labels:  ripple, ripple-effect
Primereact
The Most Complete React UI Component Library
Stars: ✭ 2,393 (+15853.33%)
Mutual labels:  ripple, ripple-effect
LoadersPack-Android
Android LoadersPack - a replacement of default android material progressbar with different loaders
Stars: ✭ 119 (+693.33%)
Mutual labels:  ripple, ripple-effect
Bootstrap
Open Source JS plugins
Stars: ✭ 13 (-13.33%)
Mutual labels:  jquery-plugin, css3
weetnie
An OpenSource cloude storage manager template
Stars: ✭ 47 (+213.33%)
Mutual labels:  css3
Front-End-Hackathon-Resources
This repository contains the Code Of Conduct, Rules as well as Event Slides and Material for our very first event, i.e. Front End Hackathon.
Stars: ✭ 18 (+20%)
Mutual labels:  css3
100-Days-of-JavaScript-Code
Completing 100DaysOfCode challenge by making 1 project every day using JavaScript for next 100 Days.
Stars: ✭ 133 (+786.67%)
Mutual labels:  css3
school management system
This is an School Management Software
Stars: ✭ 185 (+1133.33%)
Mutual labels:  css3
hexo-theme-chiangmai
A theme of Hexo Inspired by Chiang-Mai City 🇹🇭
Stars: ✭ 32 (+113.33%)
Mutual labels:  css3
cdn
🚀 ✈️ 🚄 free CDN for everyone who wants to speed his website freely!😄
Stars: ✭ 16 (+6.67%)
Mutual labels:  css3
vidbacking
vidbacking is a jQuery plugin to create HTML5 / Youtube video as background on webpage with fallback image support. It supports mp4 and webm files as well as Youtube video.
Stars: ✭ 55 (+266.67%)
Mutual labels:  jquery-plugin
csscomplete.vim
Update the bult-in CSS complete function to latest CSS standard.
Stars: ✭ 61 (+306.67%)
Mutual labels:  css3
proffy-NLW
📓 Educational platform to connect teachers and students
Stars: ✭ 13 (-13.33%)
Mutual labels:  css3
opentek
If it is about Open Source, it is on Opentek.
Stars: ✭ 74 (+393.33%)
Mutual labels:  css3
Covidview
A complete COVID-19 tracker cum dashboard website made by me.
Stars: ✭ 24 (+60%)
Mutual labels:  css3
reactwarriors-workshop
2-x дневный онлайн воркшоп "Киноафиша 2.0 на React"
Stars: ✭ 25 (+66.67%)
Mutual labels:  css3
guiadevbrasil
Um guia extenso de informações com um vasto conteúdo de várias áreas para ajudar, agregar conhecimento e retirar dúvidas, nesse guia você encontrará tudo que necessário para qualquer carreira relacionada a tecnologia.
Stars: ✭ 9,863 (+65653.33%)
Mutual labels:  css3
readingbar
A simple progress bar that indicates the length & your current reading position of an article/page
Stars: ✭ 19 (+26.67%)
Mutual labels:  jquery-plugin
nandomoreira.me-nuxt-theme
🏃🏻‍♂️ My superfast personal SPA blog/site using Vuejs and Nuxt :D
Stars: ✭ 44 (+193.33%)
Mutual labels:  css3

Ripple Effect Click

Build Status

You probably have noticed that ripple effect --(known as "ripple")-- when you click on an element on your Android. Now you can implement it to your application very fast and easily.

How to use:

Simple and standard use, just define the class or element you want to add the ripple effect. This example will apply the ripple effect to all buttons you have.

$('button').rippleEffect();

You also can define more than one element into the same definition, just like this:

$('button, .to-ripple, .element-test').rippleEffect();

Extra configurations:

There are some extra settings you can apply to the ripple's configuration:

  • timingFunction
  • duration

Animation properties:

  • CSS animation-timing-function Property:
    • timingFunction: linear
    • $('button').rippleEffect({
          timingFunction: 'linear'
      });
  • CSS animation-duration Property:
    • duration: '0.65s'
    • $('button').rippleEffect({
          duration: '2s'
      });

Contribution

Want to contribute to this extension? The quickest way is to open a pull request on GitHub.

Support

If you encounter any problems or bugs, please open an issue on GitHub. Need help setting up or want to customize this extension to meet your business needs? Please let me know!

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].