Code Monkey home page Code Monkey logo

Comments (12)

wout avatar wout commented on May 21, 2024 2

Yes, that's possible:

var group = draw.group()
var nestedGroup = group.group()
var nestedNestedGroup = nestedGroup.group()

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

That was quick!

:)

Ah, I just re-read the 'nesting' instructions, but thought at first that that was for nesting other SVG documents.

Will try that out,

Thank you!

from svg.js.

wout avatar wout commented on May 21, 2024

A nested svg is also a possibility, it works slightly different than a group.

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

Thanks.

Regarding animation, is it possible to construct a temporary group (to animate several items at once)
regardless of the group structure of the SVG doc?

(this is probably a separate question so if you think I should move it elsewhere, let me know).

Cheers.

from svg.js.

wout avatar wout commented on May 21, 2024

No, but I think the during() method would come in handy:

var circleY = circle.y()
var pathFill = path.attr('fill')

rect.animate(3000).x(321).during(function(pos, morph){
  circle.y(morph(circleY, 654))
  path.attr('fill', morph(pathFill, '#f06'))
})

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

I'll have a look at that, thank you.

from svg.js.

wout avatar wout commented on May 21, 2024

It makes sense though, creating a temporary set() for synchronous animations. I'll think about how we can implement this.

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

Nice to hear this could have sparked a new feature.

I'm having big fun with your library - although I'm an absolute JS beginner.

from svg.js.

wout avatar wout commented on May 21, 2024

It's really great to hear you like the library and that you're getting on with it.

I am already implementing the set() feature. I have thought about it but never really pursued the implementation. So thanks for giving me a reason :)

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

Good!

:)

is there a way to contact you directly? I'd like to show you what I'm doing with your library,
among other things code related. Or just add [at]gmail.com to my user name, and we all
can speak Dutch.

from svg.js.

wout avatar wout commented on May 21, 2024

Just check my Github profile ;)

from svg.js.

danskionline avatar danskionline commented on May 21, 2024

Just saw that. Forget the Dutch part - I guess?

:)

from svg.js.

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.