J
J
Junior2019-10-28 22:02:14
JavaScript
Junior, 2019-10-28 22:02:14

How to reverse stroke?

Good day)
I'm using the anime.js library to animate the rendering of the svg stroke, everything works as it should, except for one thing, I can't render the svg stroke back on a certain event. Here is the code:

function makeStroke(){
var drawer = anime({
        targets: '.header-img path',
        strokeDashoffset: [anime.setDashoffset, 0],
        easing: 'easeInOutSine',
        duration: 2000,
        delay:0,
        direction: 'alternate',
        loop: false,
        });
        var filler = anime({
        targets: '.header-img path',
        easing: 'easeInOutSine',
        duration: 1000,
        fill:'#000',
        delay:2000,
        direction: 'alternate',
        loop: false,
        });
}

function removeStroke(){
// Не знаю как сделать
}

Thanks in advance)

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question