material-motion-js icon indicating copy to clipboard operation
material-motion-js copied to clipboard

Expose pointerEventsFromOpacity$ in views-dom

Open appsforartists opened this issue 7 years ago • 0 comments

export function pointerEventsStyleFromOpacity(opacity$: ObservableWithMotionOperators<number>): ObservableWithMotionOperators<string> {
  return opacity$.threshold(.9).rewrite({
    mapping: {
      [ThresholdRegion.ABOVE]: 'inherit',
      [ThresholdRegion.WITHIN]: 'inherit',
      [ThresholdRegion.BELOW]: 'none',
    },
  });
}

appsforartists avatar Dec 05 '17 02:12 appsforartists