Skip to content

Commit

Permalink
speed up nozzle animations
Browse files Browse the repository at this point in the history
  • Loading branch information
shlokamin committed Oct 4, 2021
1 parent 637524d commit 99c2256
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/src/hardware-sim/Pipette/EmanatingNozzle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ export const EmanatingNozzle = (props: {
<animate
data-testid="animation_radius"
attributeName="r"
from={0.5}
from={5}
to={SINGLE_CHANNEL_PIPETTE_HEIGHT / 2}
begin={0}
dur={1.5}
calcMode="linear"
dur={1.1}
calcMode="ease-out"
repeatCount="indefinite"
/>
<animate
data-testid="animation_radius"
attributeName="opacity"
from={1}
from={0.7}
to={0}
begin={0}
dur={1.5}
dur={1.1}
calcMode="linear"
repeatCount="indefinite"
/>
Expand Down

0 comments on commit 99c2256

Please sign in to comment.