UNPKG

five-bells-visualization

Version:
33 lines (32 loc) 631 B
<!DOCTYPE html> <meta charset="UTF-8"> <style> .target { width: 100px; height: 100px; background-color: black; display: inline-block; } .replica { background-color: green; } </style> <body> <script src="../testharness/testharness.js"></script> <script src="../testharness/testharnessreport.js"></script> <script src="resources/interpolation-test.js"></script> <script> assertInterpolation({ property: 'opacity', from: '0', to: '1' }, [ {at: -0.3, is: '0'}, // CSS opacity is [0-1]. {at: 0, is: '0'}, {at: 0.3, is: '0.3'}, {at: 0.6, is: '0.6'}, {at: 1, is: '1'}, {at: 1.5, is: '1'} ]); </script> </body>