Git Product home page Git Product logo

Comments (6)

cjgordon avatar cjgordon commented on May 25, 2024 1

Okay. One final item to add, so that when zoomed, and element was scaled dragging worked 100% correctly I changed altDrag to:

Snap.plugin( function( Snap, Element, Paper, global ) {
        Element.prototype.altDrag = function() {
        this.drag( dragMove, dragStart, dragEnd );
        return this;
        }

        var dragStart = function ( x,y,ev ) {
            this.data('origTransform', this.transform().local );
        }

        var dragMove = function(dx, dy, ev, x, y) {
        var zoomPan = this.paper.zpd('save');
        this.attr({
                    transform: this.data('origTransform') + (this.data('origTransform') ? "T" : "t") + [dx / zoomPan.a, dy / zoomPan.a]
         });
        }

        var dragEnd = function() {
        }


    });

from snap.svg.zpd.

tikiatua avatar tikiatua commented on May 25, 2024

Hi @greglbd,

unfortunately the library is not yet set-up to handle subsets separately. Maybe this is something that we could implement in the future.

Maybe you could explore the option to stack two svg elements (with absolute positioning inside a container) and use zpd-plugin on the upper element only. Another option would be to set the background as background-image on the svg-element.

<div class="container" style="width:400px; height:400px; position:relative">
  <svg id="background" style="position:absolute; top:0px; bottom:0px; left:0px; right:0px"></svg>
  <svg id="stage" style="position:absolute; top:0px; bottom:0px; left:0px; right:0px"></svg>
</div>

from snap.svg.zpd.

hueitan avatar hueitan commented on May 25, 2024

Seems your background image should be another svg elements. (same as @tikiatua said)

snap.svg.zpd currently doesn't support disable drag on specific element now.

Thanks for your question.

from snap.svg.zpd.

greglbd avatar greglbd commented on May 25, 2024

Thanks for the response @tikiatua @huei90 I'm working on extending the plugin.

I've got this feature pretty much working so i'll make a pull request when i'm done and you can decide what to do with it.

Thanks

Greg

from snap.svg.zpd.

hueitan avatar hueitan commented on May 25, 2024

yeah @greglbd Thanks!

Look forward to your PR!

🍻

from snap.svg.zpd.

cjgordon avatar cjgordon commented on May 25, 2024

I have found another way to achieve this functionality without modifying zpd in anyway using a slightly modified version of snaps own drag functionality. Additionally this works with groups etc out of the box which is important for dragging complex icons etc. which could be made up of many shapes and paths.

First prevent clicking on elements from triggering zpd drag events:

eve.on("snap.drag.start", function(x, y, e) {
        e.stopPropagation();
});

Then add this custom drag plugin which deals with dragging when zoomed etc (props to @ibrierley):
https://github.com/ibrierley/SnapTut/blob/master/dragplugin.js

For each element or group you want to be draggable:

e.altDrag();

Overall I feel this is a better solution than modifying zpd to be all things to all people. It should be a modular plugin for zooming and panning which it's awesome at and other plugins added for additional functionality such as dragging elements etc.

from snap.svg.zpd.

Related Issues (20)

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.