Width = screen.availWidth Height = screen.availHeight cDepth = screen.colorDepth Width = screen.width Height = screen.height |
利用可能な横幅 利用可能な縦幅( 高さ ) 色数をビット数で返す 横幅を返す 縦幅( 高さ )を返す |
<SCRIPT TYPE="text/JavaScript"> <!-- document.write( "AvailWidth : ", screen.availWidth, "<BR>" ); document.write( "AvailHeight: ", screen.availHeight, "<BR>" ); document.write( "ColorDepth : ", screen.colorDepth, "<BR>" ); document.write( "Width : ", screen.width, "<BR>" ); document.write( "Height : ", screen.height, "<BR>" ); //--> </SCRIPT> |