Homebrew [Preview] New 3DS Web Browser web app

  • Thread starter Thread starter jsa
  • Start date Start date
  • Views Views 10,017
  • Replies Replies 20
  • Likes Likes 5
@jsa someone reported a problem with my touch API implementation on the New Nintendo 3DS with my application. The major problem is scrolling. Did you do any tricks on your Touch Events Demo to prevent that? I know that on 3DBrew they recommend calling scrollTo frequently. What do you think?
I used a meta viewport tag - <meta name="viewport" content="width=device-width,height=device-height-initial-scale=1.0,user-scalable=no"> and also made sure that the document was no larger than 320x212px, try:

body {
width: 100%;
height: 100%;
padding: 0 0 0 0;
margin: 0 0 0 0;
overflow: hidden;
}

html {
width: 320px;
height: 210px;
padding: 0 0 0 0;
margin: 0 0 0 0;
overflow: hidden;
}
 

Site & Scene News

Popular threads in this forum