Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 465 Bytes

File metadata and controls

15 lines (12 loc) · 465 Bytes

Touch Action Touch Action utility adds few helper classes to control touch-action CSS property:

Class CSS
.touch-action-none touch-action: none
.touch-action-manipulation touch-action: manipulation
.touch-action-pan-x touch-action: pan-x
.touch-action-pan-y touch-action: pan-y

For example:

<!-- Makes button with touch-action pan-x --> <button class="touch-action-pan-x">Click me</button>