Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>CSS Motion Path: ray paths</title>
<link rel="match" href="offset-path-ray-003-ref.html">
<meta name="assert" content="This tests that ray() generates a rotation and translation.">
<style>
#container {
width: 150px;
height: 150px;
}
#target {
position: relative;
left: 100px;
top: 100px;
width: 100px;
height: 50px;
background-color: lime;
transform-origin: 0px 0px;
offset-path: ray(135deg farthest-side);
offset-distance: 100%;
offset-position: auto;
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
</body>
</html>