Git Product home page Git Product logo

Comments (1)

msand avatar msand commented on September 23, 2024

Hello,

I'm happy to hear 😄

Yes it is, scale and translate can be constrained already from before, and now I've added double tap and initial{Top,Left,Zoom} support:

class SvgRoot extends Component {
  render() {
    const { transform, width, height } = this.props;
    return (
      <Svg width={width} height={height}>
        <G transform={transform}>
          <Rect
            y="0"
            x="0"
            width="100"
            height="100"
            fill="none"
            strokeWidth="1"
            stroke="red"
          />
          <Rect
            y="5"
            x="5"
            width="90"
            height="90"
            fill="blue"
            strokeWidth="3"
            stroke="black"
          />
        </G>
      </Svg>
    );
  }
}

export default class SimpleConstrained extends Component {
  render() {
    const { width, height } = this.props;
    return (
      <ZoomableSvg
        align="mid"
        vbWidth={100}
        vbHeight={100}
        width={width}
        height={height}
        meetOrSlice="meet"
        svgRoot={SvgRoot}
        initialTop={-20}
        initialLeft={-50}
        initialZoom={0.5}
        doubleTapThreshold={300}
        childProps={{ width, height }}
        constrain={{
          combine: 'dynamic',
          scaleExtent: [1 / 5, 5],
          translateExtent: [[-10, -10], [110, 110]],
        }}
      />
    );
  }
}

from zoomable-svg.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.