Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 496 Bytes

ripple.md

File metadata and controls

36 lines (28 loc) · 496 Bytes

Ripple Component

◀️ Back to main page

Usage

HTML

<!--
This simple HTML tag at below is all you need to use this feature.
-->
<button
    ripple="{theme: light | dark [=light]}"
>
Button Element
</button>

Example

HTML

<button class="btn btn-material btn-primary"
    ripple="dark"
>
You can set ripple effect very easily.
</button>

<a href="#" class="btn btn-default"
    ripple
>
Yay! Anchor tag is also works! :)
</a>