【发布时间】:2019-04-15 20:10:03
【问题描述】:
我正在尝试使用 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 );
} );
} );
}
我已经创建了正在发生的事情的小提琴:
https://jsfiddle.net/gw3s7z0p/7/
我得到这个的代码可以在这里找到:
https://tympanus.net/Tutorials/ShapeHoverEffectSVG/index2.html
如您所见,它可以很好地向上/向下滑动,并带有一点弹跳。这就是我想要实现的目标(正好相反):)
【问题讨论】:
标签: css animation svg snap.svg