キャンバスを持っています
<canvas id="canvas" width="1700" height="679" style="background-color:#ffffff;width:100%;overflow:hidden;margin-top: -7px;"></canvas>
クロムとファイアフォックスで問題なく動作します。ただし、幅:100% でのみ機能し、高さ (679 の高さ) は変更できません。
高さをオートで100%にしてみるが慣れない
編集:ついに!わかった。確かに、キャンバスの内容は幅 100% ではうまくいきません。ただし、高さについては(上記のIE9が機能します)、高さスタイルを設定する必要があります
$("#canvas").attr('style','background-color:#ffffff; width:100%;height:679px;overflow:hidden;margin-top: -7px;');
Jquery を使用してキャンバスのサイズを変更します。
function resizeIE()
{
canvas = document.getElementById("canvas");
if($.browser.msie) //only IE
{
$("#canvas").attr('style','background-color:#ffffff; width:100%;height:679px;overflow:hidden;margin-top: -7px;');
//set the height style first
if(window.innerWidth<960) //for other device (only for me)
{
var height_ie = (window.innerWidth*39.941176470588235294117647058824)/100;
//to make the ratio of canvas find the pencentage
//ex. canvas height: 1700px canvas width: 679px;
//(679*100)/1700 = 39.941 <-- use this one
//best solution
}
else
{
var height_ie = window.innerHeight-160; //just for the logo for my web
}
canvas.style.height = height_ie+"px";
}
}
ウィンドウのサイズを変更するには、document.ready に適用します
window.onresize = function(event) {
resizeIE();
};