我的页面上有3个部分`
<a href="#" class="next-section">Next Section</a>
<div class="section-content">
</div>
</section>
<section id="about">
<a href="#" class="prev-section">Previous Section</a>
<a href="#" class="next-section">Next Section</a>
<div class="section-content">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="480px" height="640px" viewBox="0 0 480 640" enable-background="new 0 0 480 640" xml:space="preserve">
<rect x="68.631" y="175.105" fill="none" width="350.877" height="113.158"/>
“SVG-PATHS HERE”
</div>
</section>
<section id="services">
<a href="#" class="prev-section">Previous Section</a>
<div class="section-content">
</div>
</section>
他们使用javascript点击滚动
jQuery.fn.extend({
scrollTo : function(speed, easing) {
return this.each(function() {
var targetOffset = $(this).offset().top;
$('html,body').animate({scrollTop: targetOffset}, speed, easing);
});
}
});
$('.next-section').click(function(e){
e.preventDefault();
var $this = $(this),
$next = $this.parent().next();
$next.scrollTo(150, 'linear');
});
$('.prev-section').click(function(e){
e.preventDefault();
var $this = $(this),
$prev = $this.parent().prev();
$prev.scrollTo(150, 'linear');
});
在第二部分我有一些svg,用CSS动画,但我想在svg可见时启动动画。我该怎么做?
答案 0 :(得分:0)
你可以通过&#34;完成&#34;函数jQuery animate()
。动画完成时会调用该完整函数。在该函数中,您可以向SVG添加一个触发动画的类。