how can i disable the following piece of code on mobile (<768px)?
jQuery(document).ready(function() {
jQuery('.fullpage-wrapper').tilt({
maxTilt: 12,
perspective: 2500, // Transform perspective, the lower the more extreme the tilt gets.
easing: "cubic-bezier(.03,.98,.52,.99)", // Easing on enter/exit.
scale: 1.1, // 2 = 200%, 1.5 = 150%, etc..
speed: 2000, // Speed of the enter/exit transition.
transition: false, // Set a transition on enter/exit.
reset: false, // If the tilt effect has to be reset on exit.
glare: true, // Enables glare effect
maxGlare: 0.1 // From 0 - 1.
});
});