maxwellito
maxwellito
Hello! Vivus and Vivus-instant run differently. Vivus is in JavaScript, this is why you have to provide a JS function. Vivus-instant generates CSS code to run the animation. This is...
I'm afraid this won't be implemented. Vivus (JavaScript library) offers controls to set the progress of an animation and speed which would be more complex to implement in CSS. I...
Hello Michael, First, thanks for your kind words. Its always nice to hear from users :) Your issue is a very interesting one. I must admit, I had to think...
You can definitely override window.requestAnimationFrame (before loading Vivus) by something like (fn) => setTimeout(fn, 1000/120). However your computer must be tough enough to generate the frames at the right time....
It's something doable with the base API ```js // Init the Vivus instance const duration = 200; const myVivus = new Vivus('svgId', {duration, start: 'manual'}); let currentFrame = 0; //...
Hi, Thanks for these kinds words :) I have been thinking to a way to ignore some paths but there would be so much rules that I forgot the idea....
To be honest I'm really confused about what to do in this case. There's no reliable way to know if a shape is visible or not (parent visible or not,...
I think I found something to help : ``` js function isHidden(el) { return (el.offsetParent === null) } ``` > http://stackoverflow.com/questions/19669786/check-if-element-is-visible-in-dom I need some more tests but it should help...
For now the method I have look like this: (fork from #48) ``` js Vivus.prototype.isInvisible = function (el) { var ignoreAttr = el.getAttribute('data-vivus-ignore'); if (ignoreAttr !== null) { return ignoreAttr...
Hi there, I'm afraid the webapp is on and still working. You can try with this SVG : https://raw.githubusercontent.com/maxwellito/vivus/master/test/manual/synth.svg I believe your SVG doesn't respect the guidelines: Vivus animate stroke...