Snap SVG / CSS 悬停是从左到右而不是从下到上?

Snap SVG / CSS hover is left to right rather than bottom to top?

我正在尝试使用 Snap SVG 为元素制作悬停效果。悬停效果有效,但动画效果不理想。我希望新路径 SVG 向上滑动,而不是从左侧滑入(我认为这就是它正在做的)。

这是我的代码:

HTML:

<section class="services">
    <a href="http://gccsi.website.wp.2018.360southclients.net:8080/consultancy/our-services/policy-advice/" data-path-hover="M0,342.1V38.7c253.1-51.4,513.9-51.4,767,0v303.4" class="item">
      <figure>
        <img src="http://gccsi.website.wp.2018.360southclients.net:8080/wp-content/uploads/2018/11/Advocacy_Comms.jpg" alt="Advocacy and Communication" width="737" height="639">
        <svg viewBox="0 0 767 290" preserveAspectRatio="none"><path d="M0,290C0,290,0,0,0,0C126.2,25.4,254.7,38.2,383.5,38.3C512.3,38.2,640.8,25.399999999999977,767,0C767,0,767,290,767,290"></path><desc>Created with Snap</desc><defs></defs></svg>
      </figure>
  </a>
</section>

CSS:

section.services .item{
    width:350px;
    margin:0;
    padding:0;
    display:block
}
 section.services figure{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:5px;
    display:block;
    -webkit-box-shadow:0 4px 11px 0 rgba(0,0,0,.16);
    -moz-box-shadow:0 4px 11px 0 rgba(0,0,0,.16);
    box-shadow:0 4px 11px 0 rgba(0,0,0,.16);
    padding-bottom:5em;
    margin:0
}
 section.services figure img{
    position:relative;
    display:block;
    width:100%;
    height:auto
}
 section.services .item svg{
    position:absolute;
    width:calc(100% + 2px);
    bottom:0;
    z-index:10;
    -webkit-transition:all .3s ease-in-out;
    transition:all .3s ease-in-out
}
 section.services .item:hover svg{
    bottom:1em
}
 section.services .item svg path{
    width:100%;
    height:auto;
    fill:#f9f ## this is pink only so I can see what's happening
}

JavaScript:

(function() {

    function init() {
        var speed = 330,
            easing = mina.backout;

        [].slice.call ( document.querySelectorAll( 'section.services .item' ) ).forEach( function( el ) {
            var s = Snap( el.querySelector( 'svg' ) ), 
                    path = s.select( 'path' ),
                    pathConfig = {
                        from : path.attr( 'd' ),
                        to : el.getAttribute( 'data-path-hover' )
                    };

            el.addEventListener( 'mouseenter', function() {
                path.animate( { 'path' : pathConfig.to }, speed, easing );
            } );

            el.addEventListener( 'mouseleave', function() {
                path.animate( { 'path' : pathConfig.from }, speed, easing );
            } );
        } );
    }

我已经创建了一个 fiddle 正在发生的事情:

https://jsfiddle.net/gw3s7z0p/7/

我从中得到的代码可以在这里找到:

https://tympanus.net/Tutorials/ShapeHoverEffectSVG/index2.html

如您所见,其中一张 up/down 滑动得很好,有一点弹跳。这就是我想要实现的目标(正好相反):)

这与您对路径进行编码的方式有关。必须使用(如果可能)相同数量的曲线并在相同位置绘制 2 条路径。在您的示例中,您有 2 条曲线绘制 "vault" 作为起始路径,只有一条曲线用于 "goal" 路径(鼠标悬停时的那条)

您可以尝试这样的操作:

<section class="services">
    <a href="http://gccsi.website.wp.2018.360southclients.net:8080/consultancy/our-services/policy-advice/" data-path-hover="M0.000, 342.100 
C0.000, 240.967 0.000, 139.833 0.000, 38.700 
C253.100, -12.700 513.900, -12.700 767.000, 38.700 
C767.000, 139.833 767.000, 240.967 767.000, 342.100" class="item">
      <figure>
        <img src="http://gccsi.website.wp.2018.360southclients.net:8080/wp-content/uploads/2018/11/Advocacy_Comms.jpg" alt="Advocacy and Communication" width="737" height="639">
        <svg viewBox="0 0 767 290" preserveAspectRatio="none"><path d="M0.000, 342.100 
C0.000, 240.967 0.000, 139.833 0.000, 38.700 
C253.100, 65 513.900, 65 767.000, 38.700 
C767.000, 139.833 767.000, 240.967 767.000, 342.100

"></path><desc>Created with Snap</desc><defs></defs></svg>
      </figure>
  </a>
</section>