Coder Social home page Coder Social logo

Comments (5)

DmitryBaranovskiy avatar DmitryBaranovskiy commented on July 29, 2024

Can’t reproduce. You forgot to specify animation duration in your code sample. This could be a case. (and you don’t need new Snap, just Snap is enough.

from snap.svg.

cjgammon avatar cjgammon commented on July 29, 2024

I brought over the code incorrectly, you are right.
The below code shows the problem I am seeing where it doesn't animate the dash offset to zero from 120.

var s = Snap('100%', '100%');

myPath = s.path('M0,0c0,0,0-28.008,0-46.707S0-89,0-89');
myPath.attr({
'fill': 'none',
'stroke': 'red',
'stroke-width': 25,
'stroke-miterlimit': 10,
'stroke-linecap': 'round',
'opacity': 1,
'stroke-dasharray': "120 200",
'stroke-dashoffset': 120
});
myPath.transform('translate(100, 300)');
myPath.animate({'stroke-dashoffset': 0}, 1000);

from snap.svg.

LucaDb avatar LucaDb commented on July 29, 2024

stroke-dashoffset still does not animate in webkit browsers on circle elements.

from snap.svg.

ibrierley avatar ibrierley commented on July 29, 2024

If you need a temporary work around you could always use a general animate func (not a solution I know, but it may help in the mean time)...

http://svg.dabbles.info/snaptut-dasharray.html

var innerCircle = s.circle(150, 150, 80).attr({
fill: "none",
stroke: 'red',
strokeWidth: 30,
strokeDasharray: "10 300 40 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10",
strokeDashoffset: 50
});

Snap.animate(0,400, function( value ){
innerCircle.attr({ 'strokeDashoffset': value })

},5000 );

from snap.svg.

LucaDb avatar LucaDb commented on July 29, 2024

Yes, thank you.

from snap.svg.

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.