キャンバスに図形や色を表示できるウェブサイトを作成していますが、私の問題は絵がもう表示されないことです。私のJSのためキャンバスで図形の上にイメージを表示
// These are my choices for the first step in designing.
<input type="radio" id="shape_1" name="shape" onchange="display()" /> circle
<input type="radio" id="shape_2" name="shape" onchange="display()" /> rectangle
//2nd step, choose color
<input type="radio" id="color_1" name="color" onchange="display()" /> RED
//3rd step, choose image
<select name="picture" id="picture_display" onchange="display()" />
<option value="apple">Apple</option>
<option value="orange">Orange</option>
<canvas id="displaycanvas" height="450px" width="820px" style="position:absolute;"> </canvas>
(別の)::
は、ここに私のhtmlサンプルです
function display() { //working fine
var canvas = document.getElementById('displaycanvas');
context = canvas.getContext('2d');
context.clearRect(0, 0, canvas.width, canvas.height);
function Choices() { //working fine too...
if (document.getElementById('color_1').checked) {
context.strokeStyle = "#FF0000";
}
if (document.getElementById('shape_1').checked) {
context.beginPath();
context.arc(95, 50, 40, 0, 2 * Math.PI);
context.stroke();
}
if (document.getElementById('shape_2').checked) {
context.beginPath();
context.rect(50, 27, 50, 100);
context.stroke();
}
}
function Picture() { //these part it won't work, I've tried to do something like this.
if (document.getElementById('picture_display').value == 'apple') {
document.getElementById('displaycanvas').src = 'http://www.logospike.com/wp-content/uploads/2015/12/Apple_Logo_Png_04.png';
}
if (document.getElementById('picture_display').value == 'orange') {
document.getElementById('displaycanvas').src = 'http://dailyrindblog.com/styleguide/web_version/logo_fruit.png';
}
}
}
私はイメージが最初の2つの手順については、上記になりたい
が、を超えませんか形状がのもの(可能であれば、それはうまくない)。私が単に逃した、またはすべてを変更するものは何ですか? あらかじめありがとうございました!
ドラッグコードの場合、これに該当するいくつかのリンクを提案できます。
上の画像を描画するには、[コンソールをチェックされていますか?]があります(http://stackoverflow.com/ documentation/javascript/185/getting-started-with-javascript/714/using-console-log) –
はい、ただし何もありません。それは単にうまく動作しますが、イメージを表示していません。 – Poofbrayy