Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/motion/animation/reftests/offset-path-path-interpolation-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>offset-path path() interpolation</title>
<link rel="match" href="offset-path-path-interpolation-ref.html">
<meta name="assert" content="offset-path path supports animation.">
<style>
@keyframes anim {
from { offset-path: path("m 100 100 l 100 100"); }
to { offset-path: path("m 100 200 l 100 -100"); }
}
#target {
position: absolute;
left: 300px;
top: 0px;
width: 300px;
height: 200px;
background-color: lime;
transform-origin: 0px 0px;
animation: anim 10s -5s paused linear;
}
</style>
</head>
<body>
<div id="target"></div>
</body>
<script>
requestAnimationFrame(() => {
document.documentElement.classList.remove('reftest-wait');
});
</script>
</html>