nnattawat / flip

A lightweight jQuery plugin to make 3D card flipping animation
Other
626 stars 312 forks source link

Laptop/Desktop flip on hover, tablet/mobile flip on click? #118

Closed ovcinatasa closed 7 years ago

ovcinatasa commented 7 years ago

Is it possible to have on Laptop/Desktop flip on hover, and tablet/mobile flip on click?

ovcinatasa commented 7 years ago

Solved :)

function isTouchDevice() { return 'ontouchstart' in window || navigator.msMaxTouchPoints > 0; } jQuery(document).ready(function($) { if (isTouchDevice()) { $("#mission, #vision, #goals").flip({ axis: 'y' }); } else { $("#mission, #vision, #goals").flip({ axis: 'y', trigger: 'hover' }); } });