npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@arco-design/transformable

v1.0.2

Published

novel-fe transformable module

Downloads

262

Readme

#Transformable - Powerful 2D Gesture Anim Solution

Preview


Effect Preview

Installation


Available as an npm package

// with npm
npm install @arco-design/transformable

// with yarn
yarn add @arco-design/transformable

Quick Start


import TransformAble from '@arco-design/transformable';

function MyComponent() {
    const domRef = useRef(null);
    const controllerRef = useRef(null);
    useEffect(() => {
        controllerRef.current = new TransformAble({
            dom: this.dom,
            onTransform: (state) => {
                const { translateX, translateY, scale, transformOrigin } = state;
                // DO SOMETHING IF NECESSARY
            },
        });
    }, []);
    function resetDom() {
        controllerRef.current.zoomTo(1, {
            fitEdge: true,
        });
    }
    return (
        <div className="transform-container"
            style={{ overflow: 'hidden' }}
        >
            <div
                className="transform-demo-object"
                ref={domRef}
            >
            <Button onClick={resetDom}>reset</Button>
        </div>
    )
}

Options


All this options can be dynamic changed by calling .config()

|Name|Type|Default|Decription| |-----|-----|-----------|----------------------| |active|boolean|true|interactive avaiable status flag| |maxScale|number|2|max scale limit| |minScale|number|0.5|min scale limit| |preventScroll|boolean|true|triggle e.preventDefault since touch, in order to prevent scroll dom behavior| |dom|HTMLElement|null|transform & interactive target| |useDomBoundary|boolean|true| decide how to compute target boundary for collision detection (inside edge). true: use dom.getBoundingClientRect when dom set; false: manually set by .setBoundary()| |bouncing|number|300|scale bouncing animation duration(ms)| |damp|number|2|momentum-based scrolling option, speed decreasement per frame, default as 2px/frame| |bounceRateX|number|0|drag damping [translate offset / touch offset] when drag(x-axis) out of viewport, set (0, 1] value to enable dragging out of edge with damping effect and rebound animation| |bounceRateX|number|0|drag damping [translate offset / touch offset] when drag(y-axis) out of viewport, same to above| |motionThreshold|number|10|min speed for genreate momentum-based scrollin effect, default as 10px/frame| |fixedX|boolean|false|disable x-axis dragging| |fixedY|boolean|false|disable y-axis dragging| |dragMode|string|'hybrid'|drag effect mode. 'always': enable dragging without scaling; 'hybrid': enable drag only if scaled; 'none': no dragging| |swipeMode|string|'animation'|decide how to implement momentum-based scrolling animation.'animation': insert <style> css declaration when animation triggered; 'transition': use transition ease function when animation triggered| |transformMode|string|'translate-first'|animation effect may be different when dragging & scaling both.'translate-first': set css property transform as translate()scale();'scale-first': set transform as scale()translate();'matrix': set transform as matrix()| |cubic|object|{ scroll: [.33, 1, .66, 1], bounce: [.17, 1, .17, 1], }|anim easing function (cubic-bezier) of scroll/bounce effect| |viewport|object|{ left: 0, right: screenWidth, top: 0, bottom: screenHeight}|viewport scope for collision detection, the edge is defined as viewport ∩ boundary|