offset-path-ray-009.html (784B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Motion Path: ray paths</title> 5 <link rel="help" href="https://drafts.fxtf.org/motion-1/#offset-path-property"> 6 <link rel="match" href="offset-path-ray-009-ref.html"> 7 <meta name="assert" content="The initial position is outside the containing block."> 8 <style> 9 #container { 10 width: 200px; 11 height: 200px; 12 } 13 #target { 14 position: relative; 15 left: 140%; 16 top: 70%; 17 width: 40px; 18 height: 40px; 19 background-color: lime; 20 offset-path: ray(180deg closest-side); 21 offset-distance: 100%; 22 offset-position: auto; 23 } 24 </style> 25 </head> 26 <body> 27 <div id="container"> 28 <div id="target"></div> 29 </div> 30 </body> 31 </html>