如何使svg的标签仅在屏幕上可见时才开始起作用。这是我正在研究的练习简码
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 400 200">
<g>
<rect x="50" y="0" fill="#f00" width="100" height="100">
<animate id="op1" attributeName="height" from="0" to="100" dur="0.5s" fill="freeze" />
</rect>
</g>
</svg>
svg当前在页面加载时动画。我要使它仅在屏幕上可见时才起作用。
答案 0 :(得分:0)
您可以设置begin="indefinite"
来禁止动画的自动开始。然后,在Javascript中,您可以选择使用.beginElement()
方法来启动动画。
这是一个基本示例,它获取窗口的scroll
事件并测试矩形是否在视口中,然后启动动画(仅一次:restart="never"
)。
var op1 = document.querySelector('#op1');
var ticking = false;
// test if element is at least partial in viewport
function isElementVisible (el) {
var rect = el.getBoundingClientRect();
return (
rect.bottom >= 0 ||
rect.right >= 0 ||
rect.top <= window.innerHeight ||
rect.left <= window.innerWidth
);
}
window.addEventListener('scroll', function () {
// call only once per animation frame
if (!ticking) {
window.requestAnimationFrame(function() {
// the animated element is the parent of the animate element
if (isElementVisible(op1.parentElement)) {
op1.beginElement();
}
ticking = false;
});
ticking = true;
}
});
svg {
position:relative;
top: 300px;
}
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 400 200">
<rect x="50" y="0" fill="#f00" width="100" height="100">
<animate id="op1" attributeName="height" from="0" to="100"
begin="indefinite" dur="0.5s" fill="freeze" restart="never" />
</rect>
</svg>