Socket
Socket
Sign inDemoInstall

web-touch-ripple

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    web-touch-ripple

Visual representation of the pointer event to a user.


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Install size
32.6 kB
Created
Weekly downloads
 

Readme

Source

Touch Ripple For Web

Use web components to implement efficient and simple touch ripple effects.

Preview

This is just a preview of a simple example of that package.

This may be different from the real thing (by gif)

ezgif-2-d586f8046c

How to apply ripple element

Please referance to a codes below!

Staticly

This is a solution of converting a string into a function and using it.

Not recommended to use it in this way and it can mainly be used for debugging purposes.

<!-- Called when a user taps or clicks. -->
<touch-ripple ontap="console.log('hello world!')">
    <h1 style="padding: 15px;">
        Tappabe
    </h1>
</touch-ripple>

Locally

This is the most ideal and widely used solution.

<touch-ripple id="ripple">...</touch-ripple>
<script>
    // in script.
    const ripple = document.getElementById("ripple");

    // Called when a user taps or clicks.
    ripple.ontap = () => console.log("hello world!");
</script>

How to wait callback until a ripple effect are spread all?

This is can implement by adding a attribute wait to a touch-ripple element.

<!-- Called when a ripple effect has spread all, after a user taps and clicks. -->
<touch-ripple ontap="() => ..." wait>

How to use with react in typescript?

This is can easily implement this by adding the code below or modifying some of it.

export function TouchRipple({onTap, wait, children}: {
    onTap?: Function,
    wait?: boolean,
    children: VNode,
}) {
    const ref = useRef<TouchRippleElement>();

    useLayoutEffect(() => {
        const ripple = ref.current;
        ripple.ontap = onTap;
        
        wait ? ripple.setAttribute("wait", "") : ripple.removeAttribute("wait");
    }, [onTap, wait]);

    return (
        /** @ts-ignore */
        <touch-ripple ref={ref}>{children}</touch-ripple>
    );
}

Static variables of CSS

NameDescriptionDefault Value
--ripplebackground color of touch-ripple effect.rgba(0, 0, 0, 0.2)
--ripple-fadein-durationDuration until the ripple effect completely fills the element.0.2s
--ripple-fadeout-durationDuration until the ripple effect disappears.0.3s
--ripple-blur-radiusThe blur effect radius of touch ripple.10px
--ripple-lower-scaleThe ripple scale of start point.0.3
--ripple-upper-scaleThe ripple scale of end point.1

Keywords

FAQs

Last updated on 31 Mar 2024

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