tor-browser

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

gradient-eval-001.html (862B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Gradient interpolation</title>
      5  <meta name="fuzzy" content="maxDifference=1-2;totalPixels=0-10000">
      6  <link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
      7  <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      8  <meta name="assert" content="A narrow segment of a wide gradient is essentially a single color, allowing for anti-aliasing">
      9  <link rel="match" href="gradient-eval-001-ref.html">
     10  <style>
     11   :root {
     12       --start: rgb(0% 0% 0%);
     13       --end: rgb(0% 100% 0%);
     14       --t: 0.5;
     15       --big: 131070000px;
     16   }
     17   .test {
     18       width: 100px;
     19       height: 100px;
     20       background: linear-gradient(var(--start) calc(var(--big) * (0 - var(--t))), var(--end) calc(var(--big) * (1 - var(--t))));
     21   }
     22 </style>
     23 </head>
     24 <body>
     25  <div class="test"></div>
     26 </body>
     27 </html>