KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
fi-ripple
★ 9
Open GitHub ↗
Performant ripples for vue or plain js
Download README (.md)
Explore Similar Repositories
VDB_HDK_tests
:
:microscope: Playing around and learning C++, HDK and OpenVDB
bitso-go
:
bitso-go is a Go client for Bitso. https://bitso.com
Medical-data-analysis
:
No description available.
Jgank
:
一个 gank.io 的第三方微信小程序
angular4-model-node
:
对angular4数据请求的封装
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
fi-ripple
?
Download (.md)
# fi-ripple Tiny (>4 KiB gzipped) no-dependencies ripple effect for plain js or vue. ## Usage Install with `npm install fi-ripple`. You will also need to install `dom4` if you want IE 10/11 support. The ripple inherits the color from css. To change it, modify the `color` css property on the container. ### With Vue ```js // dom4 is only needed for IE (10+) support – import it once import 'dom4'; import Ripple from 'fi-ripple'; export default { directives: { Ripple, }, } ``` Now you can use the directive in your component template: ```html <button v-ripple>Click me</button> ``` ### With plain JS ```js // import the Ripple constructor import { FiRipple } from 'fi-ripple'; const rippleContainer = document.getElementById('test'); // listen for clicks inside the given container new FiRipple(rippleContainer); ```