Line 1: |
Line 1: |
− | Hello. I am ジョシ (Joshi, aka Joshi 3DS and [http://joshi3dsforums.do.am Joshi 3DS Forums] admin gjdog), the creator of [http://joshi3ds.do.am Joshi 3DS], and I am here to teach you how to make your website 3DS compatible (although it may turn out to be sized as if it's DSi compatible). Here's a website "full" HTML code example: | + | Hello. I am ジョシ (Joshi, aka Joshi 3DS and [http://joshi3dsforums.do.am Joshi 3DS Forums] admin gjdog), the creator of [http://joshi3ds.do.am Joshi 3DS], and I am here to teach you how to make your website 3DS compatible (although it may turn out to be sized as if it's DSi compatible). Here's a website "full" HTML code example: <html> |
− | | + | <meta name="viewport" content="width=400"> |
− | <html><br /> | + | <title>YOUR TITLE</title> |
− | <meta name="viewport" content="width=400"><br /> | + | <head> |
− | <title>YOUR TITLE</title><br /> | + | <style> |
− | <head><br /> | + | body{margin:0;} |
− | <style><br /> | + | #topscreen{width:400;height:220;overflow:hidden;} |
− | body{margin:0;}<br /> | + | #bottomscreen{width:320;height:212;overflow:hidden;margin:0 auto;} |
− | #topscreen{width:400;height:220;overflow:hidden;}<br /> | + | </style> |
− | #bottomscreen{width:320;height:212;overflow:hidden;margin:0 auto;}<br /> | + | </head> |
− | </style><br /> | + | <body> |
− | </head><br /> | + | <div id="topscreen">TOP SCREEN CONTENT</div> |
− | <body><br /> | + | <div id="bottomscreen">BOTTOM SCREEN CONTENT</div> |
− | <div id="topscreen">TOP SCREEN CONTENT</div><br /> | + | <script> |
− | <div id="bottomscreen">BOTTOM SCREEN CONTENT</div><br /> | + | window.setInterval(function();{ |
− | <script><br /> | + | window.scrollTo(40,220); |
− | window.setInterval(function();{<br /> | + | }, 50); |
− | window.scrollTo(40,220);<br /> | + | </script> |
− | }, 50);<br /> | + | </body> |
− | </script><br /> | |
− | </body><br /> | |
| </html> | | </html> |
| | | |