imageObject.widthは、image要素のwidth属性の値を取得、もしくは、設定するプロパティ。
width属性には、画像の幅をピクセル単位の数値で指定できる。
構文
取得
var $width = $imageElementReference.width;
戻り値
image要素のwidth属性の値。画像の幅を示すピクセル単位の数値。
設定
$imageElementReference.width = 幅;
- 幅
- 画像の幅をピクセル単位の数値で指定。
サンプル
image要素のwidth属性の値:
サンプルの動作について
- 「150px」ボタンをクリックすると、サンプル画像の幅を「150px」にする。「image要素のwidth属性の値:」の右横に「150」と表示する。
- 「300px」ボタンをクリックすると、サンプル画像の幅を「300px」にする。「image要素のwidth属性の値:」の右横に「300」と表示する。
- 「450px」ボタンをクリックすると、サンプル画像の幅を「450px」にする。「image要素のwidth属性の値:」の右横に「450」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setAlt( $width ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.width = $width;
var $width = $elementReference.width;
document.getElementById( "sampleOutput" ).innerHTML = $width;
}
</script>
function setAlt( $width ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.width = $width;
var $width = $elementReference.width;
document.getElementById( "sampleOutput" ).innerHTML = $width;
}
</script>
HTML
<p>
<button onclick="setAlt('150');">150px</button>
<button onclick="setAlt('300');">300px</button>
<button onclick="setAlt('450');">450px</button>
</p>
<p>image要素のwidth属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample" width="300px" height="198px">
<button onclick="setAlt('150');">150px</button>
<button onclick="setAlt('300');">300px</button>
<button onclick="setAlt('450');">450px</button>
</p>
<p>image要素のwidth属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample" width="300px" height="198px">