tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

offset-path-shape-circle-008.html (739B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Motion Path test: &lt;basic-shape&gt; circle() path offset-position</title>
      4 <meta name="fuzzy" content="maxDifference=0-150; totalPixels=0-300">
      5 <link rel="match" href="offset-path-shape-circle-001-ref.html">
      6 <link rel="help" href="https://drafts.fxtf.org/motion/#valdef-offset-path-basic-shape">
      7 
      8 <style>
      9 #outer {
     10  top: 100px;
     11  left: 100px;
     12  position: relative;
     13  width: 600px;
     14  height: 400px;
     15 }
     16 #box {
     17  top: 100px;
     18  left: 200px;
     19  background-color: green;
     20  position: relative;
     21  offset-path: circle();
     22  offset-position: 300px 200px;
     23  offset-distance: 25%;
     24  border-radius: 50% 50% 0 0;
     25  width: 100px;
     26  height: 100px;
     27 }
     28 </style>
     29 
     30 <div id="outer">
     31  <div id="box"></div>
     32 </div>