var menu1 = document.getElementsByClassName("left-menu")[0];
menu1.addEventListener('touchstart', function(e){
var coord = {x: 0, y: 0};
coord.x = e.touches[0].clientX;
coord.y = e.touches[0].clientY;
}, false);
alert(coord.x);
menu1.addEventListener('touchmove', function(e){
menu1.style.transform = "translate(0, "+y+"px)";
}, false);
menu1.addEventListener('touchend', function(e){
menu1.removeEventListener('touchstart', 'touchmove');
}, false);
@media (max-width: 1024px) and (orientation: landscape) {
@import url ("css/style-mob.css");
}