一般的に、あなたはこのような何かを行うことができます。
<a href="google.com"><img id="myImage" src="http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_still_zpskfsuzshi.jpg" onmouseover="this.src='http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_zpsekucjvgf.gif'" onmouseout="this.src='http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_still_zpskfsuzshi.jpg'" /></a>
<script>
var w = window.innerWidth;
document.getElementById("myImage").width = w;
</script>
これは、ブラウザウィンドウの内側の幅にイメージの幅を調整します。高さで調整する場合は、代わりにwindow.innerHeightプロパティを使用します。あなたのイメージに関連して2つのうちの最小のものであなたのイメージを調整したい場合は、いくつかのロジックを書くことができます。
それとも、あなたはインラインそれをしたい場合:
<a href="google.com"><img src="http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_still_zpskfsuzshi.jpg" onmouseover="this.src='http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_zpsekucjvgf.gif'" onmouseout="this.src='http://i1146.photobucket.com/albums/o535/DanielleStateAuto/360_vid_033017_A_still_zpskfsuzshi.jpg'" width="window.innerWidth"/></a>
も動作しますが、それに追加のロジックを追加することは難しいだろう。
ようこそstackoverflow.comへようこそ!私たちは、十分に考察され、研究とショーコードの証拠を示すときに、人々の質問に答えるために全力を尽くしています。次のドキュメントを参照してください。http://stackoverflow.com/help/how-to-ask、 – Sethmr