material-motion-js
material-motion-js copied to clipboard
Expose pointerEventsFromOpacity$ in views-dom
export function pointerEventsStyleFromOpacity(opacity$: ObservableWithMotionOperators<number>): ObservableWithMotionOperators<string> {
return opacity$.threshold(.9).rewrite({
mapping: {
[ThresholdRegion.ABOVE]: 'inherit',
[ThresholdRegion.WITHIN]: 'inherit',
[ThresholdRegion.BELOW]: 'none',
},
});
}