웹앱 개발시 네이티브앱처럼 보이게 화면 touchmove해도 브라우져 움직이지 않게 하는 방법이 먼가요? 트윗에서 언급하신적 있으신데 도저히 못찼겠어요 ㅠㅠ
로빈아빠
본문
방금 테스트 해봤는데요~
<script>
function scrollLockOnoff(){
if(document.ontouchmove){
document.ontouchmove = "";
}
else{
document.ontouchmove = function(e){
e.preventDefault();
return false;
}
}
}
</script>
<input type="button" value="scrollLockOnoff" onclick="scrollLockOnoff();"></input>
요렇게 하니까 되네요~
<script>
function scrollLockOnoff(){
if(document.ontouchmove){
document.ontouchmove = "";
}
else{
document.ontouchmove = function(e){
e.preventDefault();
return false;
}
}
}
</script>
<input type="button" value="scrollLockOnoff" onclick="scrollLockOnoff();"></input>
요렇게 하니까 되네요~
관련링크
- 이전글Cocos2d 멀티터치를 활용해서 총알 발사와 이동을 동시에 처리하기 11.05.13
- 다음글VirtualBox에 MAC OS X 설치 (안녕 해킨토시) 11.04.13
댓글목록
등록된 댓글이 없습니다.